@telia-ace/knowledge-widget-components-guide 1.3.31-rc.0 → 1.3.32

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.
@@ -1,5 +1,6 @@
1
- import React from 'react';
1
+ import { default as React } from 'react';
2
2
  import { AvailablePerspectives, GuideProps } from './guide-component';
3
+
3
4
  type Props = {
4
5
  className?: string;
5
6
  defaultAnswerVersionLabel: string;
package/categories.d.ts CHANGED
@@ -1,5 +1,6 @@
1
- import React from 'react';
1
+ import { default as React } from 'react';
2
2
  import { GuideProps, ToolbarProps } from './guide-component';
3
+
3
4
  type Props = {
4
5
  guide: GuideProps;
5
6
  toolbar: ToolbarProps;
package/feedback.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- import React from 'react';
1
+ import { default as React } from 'react';
2
+
2
3
  type Props = {
3
4
  backButtonShown?: boolean;
4
5
  accordion?: boolean;
package/functions.d.ts CHANGED
@@ -1,7 +1,8 @@
1
- import { PickerTypes } from '@telia-ace/knowledge-widget-core';
2
- import { DispatchAction } from '@telia-ace/knowledge-widget-ui';
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;
@@ -1,9 +1,10 @@
1
- import { DataError } from '@telia-ace/knowledge-data-client';
2
- import { ContactMethodType } from '@telia-ace/knowledge-widget-adapters';
3
- import { FavoriteProperties, LanguageProperties, MetaDataProperties } from '@telia-ace/knowledge-widget-component-utilities';
4
- import { DialogItem, PickerTypes } from '@telia-ace/knowledge-widget-core';
5
- import { FormComponentInstanceProperties } from '@telia-ace/widget-forms';
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
@@ -1,4 +1,5 @@
1
- import React from 'react';
1
+ import { default as React } from 'react';
2
+
2
3
  type Props = {
3
4
  className: string;
4
5
  accordion?: boolean;
package/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
- import GuideComponent from './guide-component';
1
+ import { default as GuideComponent } from './guide-component';
2
+
2
3
  export default GuideComponent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telia-ace/knowledge-widget-components-guide",
3
- "version": "1.3.31-rc.0",
3
+ "version": "1.3.32",
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.31-rc.0",
14
- "@telia-ace/widget-utilities": "^1.3.31-rc.0",
15
- "@telia-ace/knowledge-widget-core": "^1.3.31-rc.0",
16
- "@telia-ace/knowledge-widget-adapters": "^1.3.31-rc.0",
17
- "@telia-ace/knowledge-widget-component-utilities": "^1.3.31-rc.0",
18
- "@telia-ace/widget-forms": "^1.3.31-rc.0",
19
- "@telia-ace/widget-routing": "^1.3.31-rc.0",
20
- "@telia-ace/widget-types-grid": "^1.3.31-rc.0",
21
- "@telia-ace/knowledge-data-client": "^1.3.31-rc.0",
13
+ "@telia-ace/knowledge-widget-ui": "^1.3.32",
14
+ "@telia-ace/widget-utilities": "^1.3.32",
15
+ "@telia-ace/knowledge-widget-core": "^1.3.32",
16
+ "@telia-ace/knowledge-widget-adapters": "^1.3.32",
17
+ "@telia-ace/knowledge-widget-component-utilities": "^1.3.32",
18
+ "@telia-ace/widget-forms": "^1.3.32",
19
+ "@telia-ace/widget-routing": "^1.3.32",
20
+ "@telia-ace/widget-types-grid": "^1.3.32",
21
+ "@telia-ace/knowledge-data-client": "^1.3.32",
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 '@telia-ace/knowledge-widget-ui';
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 '@telia-ace/knowledge-widget-core';
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;