@telia-ace/knowledge-widget-components-guide 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/answer-version-picker.d.ts +2 -1
- package/categories.d.ts +2 -1
- package/feedback.d.ts +2 -1
- package/functions.d.ts +4 -3
- package/guide-component.d.ts +6 -5
- package/guide.d.ts +2 -1
- package/index.d.ts +2 -1
- package/package.json +10 -10
- package/toolbar.d.ts +3 -2
- package/use-feedback.d.ts +2 -1
- package/languages.d.ts +0 -17
package/categories.d.ts
CHANGED
package/feedback.d.ts
CHANGED
package/functions.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { PickerTypes } from '
|
|
2
|
-
import { DispatchAction } from '
|
|
3
|
-
import React from 'react';
|
|
1
|
+
import { PickerTypes } from '../../../knowledge/core/src/index.ts';
|
|
2
|
+
import { DispatchAction } from '../../../knowledge/ui/src/index.ts';
|
|
3
|
+
import { default as React } from 'react';
|
|
4
4
|
import { GuideProps } from './guide-component';
|
|
5
|
+
|
|
5
6
|
export type FunctionListItem = {
|
|
6
7
|
type: string;
|
|
7
8
|
child: React.ReactNode;
|
package/guide-component.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { DataError } from '
|
|
2
|
-
import { ContactMethodType } from '
|
|
3
|
-
import { FavoriteProperties, LanguageProperties, MetaDataProperties } from '
|
|
4
|
-
import { DialogItem, PickerTypes } from '
|
|
5
|
-
import { FormComponentInstanceProperties } from '
|
|
1
|
+
import { DataError } from '../../../knowledge/data-client/src/index.ts';
|
|
2
|
+
import { ContactMethodType } from '../../../knowledge/adapters/src/index.ts';
|
|
3
|
+
import { FavoriteProperties, LanguageProperties, MetaDataProperties } from '../../utilities/src/index.ts';
|
|
4
|
+
import { DialogItem, PickerTypes } from '../../../knowledge/core/src/index.ts';
|
|
5
|
+
import { FormComponentInstanceProperties } from '../../../forms/src/index.ts';
|
|
6
6
|
import { Container } from '@webprovisions/platform';
|
|
7
|
+
|
|
7
8
|
export type GuideProps = {
|
|
8
9
|
id: string;
|
|
9
10
|
title: string;
|
package/guide.d.ts
CHANGED
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telia-ace/knowledge-widget-components-guide",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.31-rc.3",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -10,15 +10,15 @@
|
|
|
10
10
|
}
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@telia-ace/knowledge-widget-ui": "^1.3.
|
|
14
|
-
"@telia-ace/widget-utilities": "^1.3.
|
|
15
|
-
"@telia-ace/knowledge-widget-core": "^1.3.
|
|
16
|
-
"@telia-ace/knowledge-widget-adapters": "^1.3.
|
|
17
|
-
"@telia-ace/knowledge-widget-component-utilities": "^1.3.
|
|
18
|
-
"@telia-ace/widget-forms": "^1.3.
|
|
19
|
-
"@telia-ace/widget-routing": "^1.3.
|
|
20
|
-
"@telia-ace/widget-types-grid": "^1.3.
|
|
21
|
-
"@telia-ace/knowledge-data-client": "^1.3.
|
|
13
|
+
"@telia-ace/knowledge-widget-ui": "^1.3.31-rc.3",
|
|
14
|
+
"@telia-ace/widget-utilities": "^1.3.31-rc.3",
|
|
15
|
+
"@telia-ace/knowledge-widget-core": "^1.3.31-rc.3",
|
|
16
|
+
"@telia-ace/knowledge-widget-adapters": "^1.3.31-rc.3",
|
|
17
|
+
"@telia-ace/knowledge-widget-component-utilities": "^1.3.31-rc.3",
|
|
18
|
+
"@telia-ace/widget-forms": "^1.3.31-rc.3",
|
|
19
|
+
"@telia-ace/widget-routing": "^1.3.31-rc.3",
|
|
20
|
+
"@telia-ace/widget-types-grid": "^1.3.31-rc.3",
|
|
21
|
+
"@telia-ace/knowledge-data-client": "^1.3.31-rc.3",
|
|
22
22
|
"@webprovisions/platform": "^1.1.4",
|
|
23
23
|
"clipboard-polyfill": "4.0.0-rc1"
|
|
24
24
|
},
|
package/toolbar.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { DispatchAction } from '
|
|
2
|
-
import React from 'react';
|
|
1
|
+
import { DispatchAction } from '../../../knowledge/ui/src/index.ts';
|
|
2
|
+
import { default as React } from 'react';
|
|
3
|
+
|
|
3
4
|
type Props = {
|
|
4
5
|
className?: string;
|
|
5
6
|
dispatch: DispatchAction;
|
package/use-feedback.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { ComponentNodeController } from '
|
|
1
|
+
import { ComponentNodeController } from '../../../knowledge/core/src/index.ts';
|
|
2
2
|
import { Container } from '@webprovisions/platform';
|
|
3
|
+
|
|
3
4
|
declare const _default: (container: Container, controller: ComponentNodeController) => void;
|
|
4
5
|
export default _default;
|
package/languages.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { LanguageProperties } from '@telia-ace/knowledge-widget-component-utilities';
|
|
2
|
-
import { PickerTypes } from '@telia-ace/knowledge-widget-core';
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import { GuideProps } from './guide-component';
|
|
5
|
-
export type LanguageListItem = {
|
|
6
|
-
id: string;
|
|
7
|
-
key: string;
|
|
8
|
-
label: string;
|
|
9
|
-
};
|
|
10
|
-
type Props = Merge<{
|
|
11
|
-
header?: string;
|
|
12
|
-
tooltip?: string;
|
|
13
|
-
guide: GuideProps;
|
|
14
|
-
picker?: PickerTypes;
|
|
15
|
-
}, LanguageProperties>;
|
|
16
|
-
declare const Languages: React.FC<Props>;
|
|
17
|
-
export default Languages;
|