@teambit/panels 0.0.862 → 0.0.864
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/artifacts/__bit_junit.xml +1 -1
- package/artifacts/schema.json +7 -4
- package/dist/index.d.ts +3 -0
- package/dist/panel-ui.aspect.d.ts +2 -0
- package/dist/panel-ui.main.runtime.d.ts +5 -0
- package/dist/ui/tabs.d.ts +14 -0
- package/package.json +4 -4
- package/tsconfig.json +1 -7
- /package/dist/{preview-1712719054377.js → preview-1712822929999.js} +0 -0
|
@@ -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.
|
|
3
|
+
<testsuite name="teambit.ui-foundation/panels@0.0.864" tests="0" failures="0" errors="0" skipped="0"/>
|
|
4
4
|
</testsuites>
|
package/artifacts/schema.json
CHANGED
|
@@ -209,7 +209,8 @@
|
|
|
209
209
|
"line": 21,
|
|
210
210
|
"character": 32
|
|
211
211
|
},
|
|
212
|
-
"name": "TabListProps"
|
|
212
|
+
"name": "TabListProps",
|
|
213
|
+
"internalFilePath": "ui/tabs.tsx"
|
|
213
214
|
},
|
|
214
215
|
"isOptional": false,
|
|
215
216
|
"isSpread": false
|
|
@@ -314,7 +315,8 @@
|
|
|
314
315
|
"line": 14,
|
|
315
316
|
"character": 33
|
|
316
317
|
},
|
|
317
|
-
"name": "Tabs"
|
|
318
|
+
"name": "Tabs",
|
|
319
|
+
"packageName": "react-tabs"
|
|
318
320
|
}
|
|
319
321
|
},
|
|
320
322
|
{
|
|
@@ -401,7 +403,8 @@
|
|
|
401
403
|
"line": 21,
|
|
402
404
|
"character": 32
|
|
403
405
|
},
|
|
404
|
-
"name": "TabListProps"
|
|
406
|
+
"name": "TabListProps",
|
|
407
|
+
"internalFilePath": "ui/tabs.tsx"
|
|
405
408
|
},
|
|
406
409
|
"isOptional": false,
|
|
407
410
|
"isSpread": false
|
|
@@ -513,7 +516,7 @@
|
|
|
513
516
|
"componentId": {
|
|
514
517
|
"scope": "teambit.ui-foundation",
|
|
515
518
|
"name": "panels",
|
|
516
|
-
"version": "0.0.
|
|
519
|
+
"version": "0.0.864"
|
|
517
520
|
},
|
|
518
521
|
"taggedModuleExports": []
|
|
519
522
|
}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
}
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/panels",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.864",
|
|
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.
|
|
9
|
+
"version": "0.0.864"
|
|
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.
|
|
15
|
+
"@teambit/cli": "0.0.862"
|
|
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.
|
|
22
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.33"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"react": "^17.0.0 || ^18.0.0",
|
package/tsconfig.json
CHANGED
|
@@ -20,8 +20,7 @@
|
|
|
20
20
|
"emitDeclarationOnly": true,
|
|
21
21
|
"strict": true,
|
|
22
22
|
"strictPropertyInitialization": false,
|
|
23
|
-
"noImplicitAny": false
|
|
24
|
-
"composite": true
|
|
23
|
+
"noImplicitAny": false
|
|
25
24
|
},
|
|
26
25
|
"exclude": [
|
|
27
26
|
"artifacts",
|
|
@@ -36,10 +35,5 @@
|
|
|
36
35
|
"include": [
|
|
37
36
|
"**/*",
|
|
38
37
|
"**/*.json"
|
|
39
|
-
],
|
|
40
|
-
"references": [
|
|
41
|
-
{
|
|
42
|
-
"path": "/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.harmony_cli@0.0.860"
|
|
43
|
-
}
|
|
44
38
|
]
|
|
45
39
|
}
|
|
File without changes
|