@telia-ace/knowledge-widget-plugins 1.3.30 → 1.3.31-rc.3
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/favorite/favorite-platform.d.ts +1 -0
- package/favorite/favorite.d.ts +2 -1
- package/favorite/index.d.ts +2 -1
- package/favorite/utils.d.ts +1 -0
- package/legacy-resources/index.d.ts +2 -1
- package/legacy-resources/legacy-resources.d.ts +2 -1
- package/misc-behavior/deny-auto-expand-contact-methods-handler.d.ts +1 -0
- package/misc-behavior/hide-back-on-single-contact-method-handler.d.ts +1 -0
- package/misc-behavior/index.d.ts +2 -1
- package/misc-behavior/plugin.d.ts +2 -1
- package/misc-behavior/search-guide-list-keyboard-navigation-handler.d.ts +1 -0
- package/package.json +5 -5
package/favorite/favorite.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { Plugin } from '
|
|
1
|
+
import { Plugin } from '../../../core/src/index.ts';
|
|
2
2
|
import { Container } from '@webprovisions/platform';
|
|
3
3
|
import { FavoritePlatform } from './favorite-platform';
|
|
4
|
+
|
|
4
5
|
export type FavoritePluginSettings = {};
|
|
5
6
|
export default class FavoritePlugin extends Plugin {
|
|
6
7
|
settings: FavoritePluginSettings;
|
package/favorite/index.d.ts
CHANGED
package/favorite/utils.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Container } from '@webprovisions/platform';
|
|
2
|
+
|
|
2
3
|
export declare const addFavoriteToStorage: (guideId: string, container: Container) => Promise<string[]>;
|
|
3
4
|
export declare const removeFavoriteFromStorage: (guideId: string, container: Container) => Promise<string[]>;
|
|
4
5
|
export declare const readFavoritesFromStorage: (container: Container) => Promise<string[]>;
|
package/misc-behavior/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { Plugin } from '
|
|
1
|
+
import { Plugin } from '../../../core/src/index.ts';
|
|
2
2
|
import { Container } from '@webprovisions/platform';
|
|
3
|
+
|
|
3
4
|
export type Settings = {
|
|
4
5
|
denyAutoExpandContactMethods?: string;
|
|
5
6
|
hideBackOnSingleContactMethod?: boolean;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telia-ace/knowledge-widget-plugins",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.31-rc.3",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@telia-ace/knowledge-data-client": "^1.3.
|
|
6
|
-
"@telia-ace/widget-services": "^1.3.
|
|
5
|
+
"@telia-ace/knowledge-data-client": "^1.3.31-rc.3",
|
|
6
|
+
"@telia-ace/widget-services": "^1.3.31-rc.3",
|
|
7
7
|
"@webprovisions/platform": "^1.1.4",
|
|
8
|
-
"@telia-ace/knowledge-widget-core": "^1.3.
|
|
9
|
-
"@telia-ace/knowledge-resource-loader": "^1.3.
|
|
8
|
+
"@telia-ace/knowledge-widget-core": "^1.3.31-rc.3",
|
|
9
|
+
"@telia-ace/knowledge-resource-loader": "^1.3.31-rc.3"
|
|
10
10
|
},
|
|
11
11
|
"peerDependencies": {
|
|
12
12
|
"@emotion/react": "11.11.1"
|