@telia-ace/widget-components-tab-stop 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.
package/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
- import TabStopComponent from './tab-stop-component';
1
+ import { default as TabStopComponent } from './tab-stop-component';
2
+
2
3
  export default TabStopComponent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telia-ace/widget-components-tab-stop",
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,9 +10,9 @@
10
10
  }
11
11
  },
12
12
  "dependencies": {
13
- "@telia-ace/widget-core": "^1.3.31-rc.0",
14
- "@telia-ace/widget-ui": "^1.3.31-rc.0",
15
- "@telia-ace/widget-utilities": "^1.3.31-rc.0",
13
+ "@telia-ace/widget-core": "^1.3.32",
14
+ "@telia-ace/widget-ui": "^1.3.32",
15
+ "@telia-ace/widget-utilities": "^1.3.32",
16
16
  "@webprovisions/platform": "^1.1.4"
17
17
  },
18
18
  "peerDependencies": {
@@ -1,4 +1,5 @@
1
1
  import { Container } from '@webprovisions/platform';
2
+
2
3
  export type TabStopComponentProps = {
3
4
  position: 'start' | 'end';
4
5
  };
package/tab-stop.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
  };