@teambit/component-compare 0.0.325 → 0.0.326

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.
@@ -35,7 +35,15 @@ export class ComponentCompareUI {
35
35
  const routes = props?.routes || (() => flatten(this.routeSlot.values()));
36
36
  const host = props?.host || this.host;
37
37
 
38
- return <ComponentCompare {...(props || {})} tabs={tabs} routes={routes} host={host} />;
38
+ return (
39
+ <ComponentCompare
40
+ {...(props || {})}
41
+ tabs={tabs}
42
+ routes={routes}
43
+ host={host}
44
+ isFullScreen={props?.isFullScreen ?? true}
45
+ />
46
+ );
39
47
  };
40
48
 
41
49
  getAspectsComparePage = () => {
@@ -114,13 +114,15 @@ class ComponentCompareUI {
114
114
  this.routeSlot = routeSlot;
115
115
  this.compUI = compUI;
116
116
  (0, _defineProperty2().default)(this, "getComponentComparePage", props => {
117
+ var _props$isFullScreen;
117
118
  const tabs = (props === null || props === void 0 ? void 0 : props.tabs) || (() => (0, _lodash().default)(this.navSlot.values()));
118
119
  const routes = (props === null || props === void 0 ? void 0 : props.routes) || (() => (0, _lodash().default)(this.routeSlot.values()));
119
120
  const host = (props === null || props === void 0 ? void 0 : props.host) || this.host;
120
121
  return /*#__PURE__*/_react().default.createElement(_componentUiComponentCompare().ComponentCompare, (0, _extends2().default)({}, props || {}, {
121
122
  tabs: tabs,
122
123
  routes: routes,
123
- host: host
124
+ host: host,
125
+ isFullScreen: (_props$isFullScreen = props === null || props === void 0 ? void 0 : props.isFullScreen) !== null && _props$isFullScreen !== void 0 ? _props$isFullScreen : true
124
126
  }));
125
127
  });
126
128
  (0, _defineProperty2().default)(this, "getAspectsComparePage", () => {
@@ -1 +1 @@
1
- {"version":3,"names":["ComponentCompareUI","constructor","host","navSlot","routeSlot","compUI","props","tabs","flatten","values","routes","registerNavigation","nav","Array","isArray","register","registerRoutes","map","navLinks","getElement","routeProps","href","length","element","undefined","find","route","path","startsWith","toArray","id","navProps","maybeRoutesForId","get","routesForId","navProp","provider","componentUi","_","harmony","config","String","componentCompareUI","componentCompareSection","ComponentCompareSection","registerRoute","registerWidget","navigationLink","order","aspectCompareSection","AspectsCompareSection","compareChangelog","CompareChangelogSection","UIRuntime","Slot","withType","ComponentAspect","ComponentCompareAspect","addRuntime"],"sources":["component-compare.ui.runtime.tsx"],"sourcesContent":["import React from 'react';\nimport { RouteProps } from 'react-router-dom';\nimport flatten from 'lodash.flatten';\nimport { Harmony, Slot, SlotRegistry } from '@teambit/harmony';\nimport ComponentAspect, { ComponentUI } from '@teambit/component';\nimport { ComponentCompare } from '@teambit/component.ui.component-compare.component-compare';\nimport { UIRuntime } from '@teambit/ui';\nimport { RouteSlot } from '@teambit/ui-foundation.ui.react-router.slot-router';\nimport { ComponentCompareProps, TabItem } from '@teambit/component.ui.component-compare.models.component-compare-props';\nimport { ComponentCompareChangelog } from '@teambit/component.ui.component-compare.changelog';\nimport { ComponentCompareAspects } from '@teambit/component.ui.component-compare.compare-aspects.compare-aspects';\nimport { AspectsCompareSection } from './component-compare-aspects.section';\nimport { ComponentCompareAspect } from './component-compare.aspect';\nimport { ComponentCompareSection } from './component-compare.section';\nimport { CompareChangelogSection } from './component-compare-changelog.section';\n\nexport type ComponentCompareNav = Array<TabItem>;\nexport type ComponentCompareNavSlot = SlotRegistry<ComponentCompareNav>;\nexport class ComponentCompareUI {\n constructor(\n private host: string,\n private navSlot: ComponentCompareNavSlot,\n private routeSlot: RouteSlot,\n private compUI: ComponentUI\n ) {}\n\n static runtime = UIRuntime;\n\n static slots = [Slot.withType<ComponentCompareNavSlot>(), Slot.withType<RouteSlot>()];\n\n static dependencies = [ComponentAspect];\n\n getComponentComparePage = (props?: ComponentCompareProps) => {\n const tabs = props?.tabs || (() => flatten(this.navSlot.values()));\n const routes = props?.routes || (() => flatten(this.routeSlot.values()));\n const host = props?.host || this.host;\n\n return <ComponentCompare {...(props || {})} tabs={tabs} routes={routes} host={host} />;\n };\n\n getAspectsComparePage = () => {\n return <ComponentCompareAspects host={this.host} />;\n };\n\n getChangelogComparePage = () => {\n return <ComponentCompareChangelog />;\n };\n\n registerNavigation(nav: TabItem | Array<TabItem>) {\n if (Array.isArray(nav)) {\n this.navSlot.register(nav);\n } else {\n this.navSlot.register([nav]);\n }\n return this;\n }\n\n registerRoutes(routes: RouteProps[]) {\n this.routeSlot.register(routes);\n return this;\n }\n\n get routes() {\n return this.routeSlot.map;\n }\n\n get navLinks() {\n return this.navSlot.map;\n }\n\n get tabs() {\n const getElement = (routeProps: RouteProps[], href?: string) => {\n if (routeProps.length === 1) return routeProps[0].element;\n if (!href) return undefined;\n return routeProps.find((route) => route.path?.startsWith(href))?.element;\n };\n\n return flatten(\n this.navSlot.toArray().map(([id, navProps]) => {\n const maybeRoutesForId = this.routes.get(id);\n const routesForId =\n (maybeRoutesForId && (Array.isArray(maybeRoutesForId) ? [...maybeRoutesForId] : [maybeRoutesForId])) || [];\n\n return navProps.map((navProp) => ({\n ...navProp,\n id: navProp?.id || id,\n element: getElement(routesForId, navProp?.props?.href),\n }));\n })\n );\n }\n\n static async provider(\n [componentUi]: [ComponentUI],\n _,\n [navSlot, routeSlot]: [ComponentCompareNavSlot, RouteSlot],\n harmony: Harmony\n ) {\n const { config } = harmony;\n const host = String(config.get('teambit.harmony/bit'));\n const componentCompareUI = new ComponentCompareUI(host, navSlot, routeSlot, componentUi);\n const componentCompareSection = new ComponentCompareSection(componentCompareUI);\n componentUi.registerRoute([componentCompareSection.route]);\n componentUi.registerWidget(componentCompareSection.navigationLink, componentCompareSection.order);\n const aspectCompareSection = new AspectsCompareSection(componentCompareUI);\n const compareChangelog = new CompareChangelogSection(componentCompareUI);\n\n componentCompareUI.registerNavigation([aspectCompareSection, compareChangelog]);\n\n componentCompareUI.registerRoutes([aspectCompareSection.route, compareChangelog.route]);\n return componentCompareUI;\n }\n}\n\nComponentCompareAspect.addRuntime(ComponentCompareUI);\n"],"mappings":"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"}
1
+ {"version":3,"names":["ComponentCompareUI","constructor","host","navSlot","routeSlot","compUI","props","tabs","flatten","values","routes","isFullScreen","registerNavigation","nav","Array","isArray","register","registerRoutes","map","navLinks","getElement","routeProps","href","length","element","undefined","find","route","path","startsWith","toArray","id","navProps","maybeRoutesForId","get","routesForId","navProp","provider","componentUi","_","harmony","config","String","componentCompareUI","componentCompareSection","ComponentCompareSection","registerRoute","registerWidget","navigationLink","order","aspectCompareSection","AspectsCompareSection","compareChangelog","CompareChangelogSection","UIRuntime","Slot","withType","ComponentAspect","ComponentCompareAspect","addRuntime"],"sources":["component-compare.ui.runtime.tsx"],"sourcesContent":["import React from 'react';\nimport { RouteProps } from 'react-router-dom';\nimport flatten from 'lodash.flatten';\nimport { Harmony, Slot, SlotRegistry } from '@teambit/harmony';\nimport ComponentAspect, { ComponentUI } from '@teambit/component';\nimport { ComponentCompare } from '@teambit/component.ui.component-compare.component-compare';\nimport { UIRuntime } from '@teambit/ui';\nimport { RouteSlot } from '@teambit/ui-foundation.ui.react-router.slot-router';\nimport { ComponentCompareProps, TabItem } from '@teambit/component.ui.component-compare.models.component-compare-props';\nimport { ComponentCompareChangelog } from '@teambit/component.ui.component-compare.changelog';\nimport { ComponentCompareAspects } from '@teambit/component.ui.component-compare.compare-aspects.compare-aspects';\nimport { AspectsCompareSection } from './component-compare-aspects.section';\nimport { ComponentCompareAspect } from './component-compare.aspect';\nimport { ComponentCompareSection } from './component-compare.section';\nimport { CompareChangelogSection } from './component-compare-changelog.section';\n\nexport type ComponentCompareNav = Array<TabItem>;\nexport type ComponentCompareNavSlot = SlotRegistry<ComponentCompareNav>;\nexport class ComponentCompareUI {\n constructor(\n private host: string,\n private navSlot: ComponentCompareNavSlot,\n private routeSlot: RouteSlot,\n private compUI: ComponentUI\n ) {}\n\n static runtime = UIRuntime;\n\n static slots = [Slot.withType<ComponentCompareNavSlot>(), Slot.withType<RouteSlot>()];\n\n static dependencies = [ComponentAspect];\n\n getComponentComparePage = (props?: ComponentCompareProps) => {\n const tabs = props?.tabs || (() => flatten(this.navSlot.values()));\n const routes = props?.routes || (() => flatten(this.routeSlot.values()));\n const host = props?.host || this.host;\n\n return (\n <ComponentCompare\n {...(props || {})}\n tabs={tabs}\n routes={routes}\n host={host}\n isFullScreen={props?.isFullScreen ?? true}\n />\n );\n };\n\n getAspectsComparePage = () => {\n return <ComponentCompareAspects host={this.host} />;\n };\n\n getChangelogComparePage = () => {\n return <ComponentCompareChangelog />;\n };\n\n registerNavigation(nav: TabItem | Array<TabItem>) {\n if (Array.isArray(nav)) {\n this.navSlot.register(nav);\n } else {\n this.navSlot.register([nav]);\n }\n return this;\n }\n\n registerRoutes(routes: RouteProps[]) {\n this.routeSlot.register(routes);\n return this;\n }\n\n get routes() {\n return this.routeSlot.map;\n }\n\n get navLinks() {\n return this.navSlot.map;\n }\n\n get tabs() {\n const getElement = (routeProps: RouteProps[], href?: string) => {\n if (routeProps.length === 1) return routeProps[0].element;\n if (!href) return undefined;\n return routeProps.find((route) => route.path?.startsWith(href))?.element;\n };\n\n return flatten(\n this.navSlot.toArray().map(([id, navProps]) => {\n const maybeRoutesForId = this.routes.get(id);\n const routesForId =\n (maybeRoutesForId && (Array.isArray(maybeRoutesForId) ? [...maybeRoutesForId] : [maybeRoutesForId])) || [];\n\n return navProps.map((navProp) => ({\n ...navProp,\n id: navProp?.id || id,\n element: getElement(routesForId, navProp?.props?.href),\n }));\n })\n );\n }\n\n static async provider(\n [componentUi]: [ComponentUI],\n _,\n [navSlot, routeSlot]: [ComponentCompareNavSlot, RouteSlot],\n harmony: Harmony\n ) {\n const { config } = harmony;\n const host = String(config.get('teambit.harmony/bit'));\n const componentCompareUI = new ComponentCompareUI(host, navSlot, routeSlot, componentUi);\n const componentCompareSection = new ComponentCompareSection(componentCompareUI);\n componentUi.registerRoute([componentCompareSection.route]);\n componentUi.registerWidget(componentCompareSection.navigationLink, componentCompareSection.order);\n const aspectCompareSection = new AspectsCompareSection(componentCompareUI);\n const compareChangelog = new CompareChangelogSection(componentCompareUI);\n\n componentCompareUI.registerNavigation([aspectCompareSection, compareChangelog]);\n\n componentCompareUI.registerRoutes([aspectCompareSection.route, compareChangelog.route]);\n return componentCompareUI;\n }\n}\n\nComponentCompareAspect.addRuntime(ComponentCompareUI);\n"],"mappings":"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"}
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component-compare@0.0.325/dist/component-compare.compositions.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component-compare@0.0.325/dist/component-compare.docs.mdx';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component-compare@0.0.326/dist/component-compare.compositions.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_component-compare@0.0.326/dist/component-compare.docs.mdx';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/component-compare",
3
- "version": "0.0.325",
3
+ "version": "0.0.326",
4
4
  "homepage": "https://bit.cloud/teambit/component/component-compare",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.component",
8
8
  "name": "component-compare",
9
- "version": "0.0.325"
9
+ "version": "0.0.326"
10
10
  },
11
11
  "dependencies": {
12
12
  "graphql-tag": "2.12.1",
@@ -15,18 +15,18 @@
15
15
  "@babel/runtime": "7.20.0",
16
16
  "@teambit/harmony": "0.4.6",
17
17
  "@teambit/component.ui.component-compare.models.component-compare-change-type": "0.0.1",
18
- "@teambit/component.ui.component-compare.models.component-compare-props": "0.0.33",
19
- "@teambit/component": "0.0.1077",
18
+ "@teambit/component.ui.component-compare.models.component-compare-props": "0.0.34",
19
+ "@teambit/component": "0.0.1078",
20
20
  "@teambit/ui-foundation.ui.menu-widget-icon": "0.0.497",
21
- "@teambit/cli": "0.0.725",
22
- "@teambit/graphql": "0.0.1077",
23
- "@teambit/logger": "0.0.818",
24
- "@teambit/scope": "0.0.1077",
25
- "@teambit/component.ui.component-compare.changelog": "0.0.99",
26
- "@teambit/component.ui.component-compare.compare-aspects.compare-aspects": "0.0.75",
27
- "@teambit/component.ui.component-compare.component-compare": "0.0.99",
21
+ "@teambit/cli": "0.0.726",
22
+ "@teambit/graphql": "0.0.1078",
23
+ "@teambit/logger": "0.0.819",
24
+ "@teambit/scope": "0.0.1078",
25
+ "@teambit/component.ui.component-compare.changelog": "0.0.100",
26
+ "@teambit/component.ui.component-compare.compare-aspects.compare-aspects": "0.0.76",
27
+ "@teambit/component.ui.component-compare.component-compare": "0.0.100",
28
28
  "@teambit/ui-foundation.ui.react-router.slot-router": "0.0.501",
29
- "@teambit/ui": "0.0.1077"
29
+ "@teambit/ui": "0.0.1078"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/react": "^17.0.8",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "peerDependencies": {
41
41
  "react-router-dom": "^6.0.0",
42
- "@teambit/legacy": "1.0.505",
42
+ "@teambit/legacy": "1.0.506",
43
43
  "react": "^16.8.0 || ^17.0.0",
44
44
  "react-dom": "^16.8.0 || ^17.0.0"
45
45
  },