@teambit/panels 0.0.861 → 0.0.862

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,4 +1,4 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <testsuites tests="0" failures="0" errors="0" skipped="0">
3
- <testsuite name="teambit.ui-foundation/panels@0.0.861" tests="0" failures="0" errors="0" skipped="0"/>
3
+ <testsuite name="teambit.ui-foundation/panels@0.0.862" tests="0" failures="0" errors="0" skipped="0"/>
4
4
  </testsuites>
@@ -209,8 +209,7 @@
209
209
  "line": 21,
210
210
  "character": 32
211
211
  },
212
- "name": "TabListProps",
213
- "internalFilePath": "ui/tabs.tsx"
212
+ "name": "TabListProps"
214
213
  },
215
214
  "isOptional": false,
216
215
  "isSpread": false
@@ -315,8 +314,7 @@
315
314
  "line": 14,
316
315
  "character": 33
317
316
  },
318
- "name": "Tabs",
319
- "packageName": "react-tabs"
317
+ "name": "Tabs"
320
318
  }
321
319
  },
322
320
  {
@@ -403,8 +401,7 @@
403
401
  "line": 21,
404
402
  "character": 32
405
403
  },
406
- "name": "TabListProps",
407
- "internalFilePath": "ui/tabs.tsx"
404
+ "name": "TabListProps"
408
405
  },
409
406
  "isOptional": false,
410
407
  "isSpread": false
@@ -516,7 +513,7 @@
516
513
  "componentId": {
517
514
  "scope": "teambit.ui-foundation",
518
515
  "name": "panels",
519
- "version": "0.0.861"
516
+ "version": "0.0.862"
520
517
  },
521
518
  "taggedModuleExports": []
522
519
  }
package/package.json CHANGED
@@ -1,25 +1,25 @@
1
1
  {
2
2
  "name": "@teambit/panels",
3
- "version": "0.0.861",
3
+ "version": "0.0.862",
4
4
  "homepage": "https://bit.cloud/teambit/ui-foundation/panels",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.ui-foundation",
8
8
  "name": "panels",
9
- "version": "0.0.861"
9
+ "version": "0.0.862"
10
10
  },
11
11
  "dependencies": {
12
12
  "classnames": "2.2.6",
13
13
  "react-tabs": "3.2.0",
14
14
  "@teambit/harmony": "0.4.6",
15
- "@teambit/cli": "0.0.859"
15
+ "@teambit/cli": "0.0.860"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@types/classnames": "2.2.11",
19
19
  "@types/react-tabs": "2.3.2",
20
20
  "@types/mocha": "9.1.0",
21
21
  "chai": "4.3.0",
22
- "@teambit/harmony.envs.core-aspect-env": "0.0.27"
22
+ "@teambit/harmony.envs.core-aspect-env": "0.0.30"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "react": "^17.0.0 || ^18.0.0",
package/tsconfig.json CHANGED
@@ -20,7 +20,8 @@
20
20
  "emitDeclarationOnly": true,
21
21
  "strict": true,
22
22
  "strictPropertyInitialization": false,
23
- "noImplicitAny": false
23
+ "noImplicitAny": false,
24
+ "composite": true
24
25
  },
25
26
  "exclude": [
26
27
  "artifacts",
@@ -35,5 +36,10 @@
35
36
  "include": [
36
37
  "**/*",
37
38
  "**/*.json"
39
+ ],
40
+ "references": [
41
+ {
42
+ "path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.860"
43
+ }
38
44
  ]
39
45
  }
package/dist/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- export type { PanelUIMain } from './panel-ui.main.runtime';
2
- export { PanelUiAspect } from './panel-ui.aspect';
3
- export { TabContainer, Tab, TabList, TabPanel } from './ui/tabs';
@@ -1,2 +0,0 @@
1
- import { Aspect } from '@teambit/harmony';
2
- export declare const PanelUiAspect: Aspect;
@@ -1,5 +0,0 @@
1
- export declare class PanelUIMain {
2
- static runtime: import("@teambit/harmony").RuntimeDefinition;
3
- static dependencies: never[];
4
- static provider(): Promise<PanelUIMain>;
5
- }
package/dist/ui/tabs.d.ts DELETED
@@ -1,14 +0,0 @@
1
- import { TabListProps as BaseTabListProps, TabPanel as TabPanelBase, TabProps as BaseTabProps, Tabs } from 'react-tabs';
2
- export type TabContainerProps = Tabs;
3
- export declare const TabContainer: typeof Tabs;
4
- export type TabProps = BaseTabProps;
5
- export type TabListProps = BaseTabListProps;
6
- export declare function TabList(props: TabListProps): import("react/jsx-runtime").JSX.Element;
7
- export declare namespace TabList {
8
- var tabsRole: string;
9
- }
10
- export declare const TabPanel: typeof TabPanelBase;
11
- export declare function Tab(props: BaseTabProps): import("react/jsx-runtime").JSX.Element;
12
- export declare namespace Tab {
13
- var tabsRole: string;
14
- }