@teambit/compositions 1.0.469 → 1.0.470
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.compositions/compositions@1.0.
|
|
3
|
+
<testsuite name="teambit.compositions/compositions@1.0.470" tests="0" failures="0" errors="0" skipped="0"/>
|
|
4
4
|
</testsuites>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o():"function"==typeof define&&define.amd?define([],o):"object"==typeof exports?exports["teambit.compositions/compositions-preview"]=o():e["teambit.compositions/compositions-preview"]=o()}(self,(()=>(()=>{"use strict";var e={9:(e,o,t)=>{var n={id:"teambit.compositions/aspect-docs/compositions@0.0.168",homepage:"https://bit.cloud/teambit/compositions/aspect-docs/compositions",exported:!0};Object.defineProperty(o,"__esModule",{value:!0}),o.default=f,a(t(594));var i=t(16),s=["components"];function a(e){return e&&e.__esModule?e:{default:e}}function r(){return r=Object.assign?Object.assign.bind():function(e){for(var o=1;o<arguments.length;o++){var t=arguments[o];for(var n in t)({}).hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},r.apply(null,arguments)}function p(e,o){if(null==e)return{};var t,n,i=m(e,o);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);for(n=0;n<s.length;n++)t=s[n],o.includes(t)||{}.propertyIsEnumerable.call(e,t)&&(i[t]=e[t])}return i}function m(e,o){if(null==e)return{};var t={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(o.includes(n))continue;t[n]=e[n]}return t}a.__bit_component=n,r.__bit_component=n,p.__bit_component=n,m.__bit_component=n;var c=function(e){return function(o){return console.warn("Component "+e+" was not imported, exported, or provided by MDXProvider as global scope"),(0,i.mdx)("div",o)}};c.__bit_component=n;var l=c("CompositionCard"),d=c("Button"),u={},h="wrapper";function f(e){var o=e.components,t=p(e,s);return(0,i.mdx)(h,r({},u,t,{components:o,mdxType:"MDXLayout"}),(0,i.mdx)("p",null,"The Compositions aspect renders component 'compositions' in isolation and displays them in the Workspace UI and Scope UI.\n'Compositions' are, essentially, small apps that exhibit and test a component in different contexts and variations."),(0,i.mdx)("p",null,'The Compositions aspect is an essential tool to authoring independent components as it renders component instances in "controlled environments", isolated and un-affected by code that was not purposefully included.\nThis sterile environment provides an accurate understanding of their look and behavior, for manual and automated testings.'),(0,i.mdx)("p",null,"Moreover, a component's composition is a way to demonstrate the component for other developers looking to use it, and non-developers, such as designers and product managers, looking to inspect it."),(0,i.mdx)("h4",null,"Features"),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"Create component examples with zero configuration:")," Write your compositions the same way you write your components.\nPlace your examples in the component's ",(0,i.mdx)("inlineCode",{parentName:"p"},"*.compositions.*")," file to have them rendered in the Workspace UI with no additional configurations."),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"See your components render in all relevant contexts:")," - Render components in the visual context of related and dependant components to learn how changes impact other components during development."),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"Hot-reloading in workspace UI:")," - See various instances of a component render live to reflect most recent changes. Get immediate feedbacks to changes in your component's code."),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"Compositions as visual documentation:")," - Compositions play an essential part in a component documentation. They demonstrate potential behaviors and use cases for that component. Compositions are another step in promoting components' discoverability, both in your local workspace and in remote scopes."),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"Compositions as test samples for your CI")," - Use your compositions as samples for automated integration and unit tests, to track and view the impact of changes on all affected components in your different scopes."),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"Developer-Designers collaboration")," - Make visual compositions accessible to designers (and everyone else) to include them in the development and release process of web applications, in a visual way."),(0,i.mdx)("h2",null,"Quickstart & configurations"),(0,i.mdx)("p",null,"Compositions require no configuration. Any ",(0,i.mdx)("inlineCode",{parentName:"p"},"*.compositions.*")," or ",(0,i.mdx)("inlineCode",{parentName:"p"},"*.composition.*")," file will be loaded and displayed in the workspace UI.\nAny tagged version of a component will have its composition included in its build artifacts, to be used as part of the component's preview."),(0,i.mdx)("p",null,"To add your own file pattern for compositions (to be automatically loaded and displayed by the Compositions aspect):"),(0,i.mdx)("pre",null,(0,i.mdx)("code",{parentName:"pre",className:"language-json"},'// In the workspace configuration file\n{\n "teambit.compositions/compositions": {\n "compositionFilePattern": ["**.my-pattern.tsx", "**.my-pattern-2.jsx"]\n }\n}\n')),(0,i.mdx)("h2",null,"Creating compositions"),(0,i.mdx)("blockquote",null,(0,i.mdx)("p",{parentName:"blockquote"},"This document uses React code as snippets.")),(0,i.mdx)("p",null,"Writing a composition does not require any configuration. Import the component to the component's ",(0,i.mdx)("inlineCode",{parentName:"p"},"*.compositions.tsx")," file, use it to build a composition and export the new component (a.k.a, the composition) with a named export."),(0,i.mdx)("p",null,"The name of the export will be converted from PascalCase/camelCase and used for the composition name (e.g, ",(0,i.mdx)("inlineCode",{parentName:"p"},'"CompositionName" --\x3e "Composition name"'),")."),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"For example"),", we'll create two compositions, 'Primary button' and 'Secondary button', each of which demonstrates a different variant or usage of that component.\nBoth compositions will be in themed (i.e, displayed in a specific context)."),(0,i.mdx)("p",null,"First, we'll create a new composition file in the component's directory:"),(0,i.mdx)("pre",null,(0,i.mdx)("code",{parentName:"pre",className:"language-bash"},"touch path/to/component/directory/<component-name>.compositions.tsx\n")),(0,i.mdx)("p",null,"Then, we'll import the component and use it to create the compositions:"),(0,i.mdx)("pre",null,(0,i.mdx)("code",{parentName:"pre",className:"language-jsx{}[button.compositions.jsx]"},"import React from 'react';\nimport { IrisTheme } from '@my-organization/design-system/iris-theme';\nimport { Button } from './button';\n\nexport const PrimaryButton = () => {\n return (\n <IrisTheme>\n <Button importance=\"cta\" style={{ width: 120 }}>\n Primary\n </Button>\n </IrisTheme>\n );\n};\n\nexport const SecondaryButton = () => {\n return (\n <IrisTheme>\n <Button importance=\"ghost\" style={{ width: 120 }}>\n Secondary\n </Button>\n </IrisTheme>\n );\n};\n")),(0,i.mdx)("div",{style:{width:450,display:"flex",justifyContent:"space-between"}},(0,i.mdx)(l,{Composition:function(){return(0,i.mdx)(d,{importance:"cta",style:{width:120},mdxType:"Button"},"Primary")},name:"Primary",mdxType:"CompositionCard"}),(0,i.mdx)(l,{Composition:function(){return(0,i.mdx)(d,{importance:"ghost",style:{width:120},mdxType:"Button"},"Secondary")},name:"Secondary",mdxType:"CompositionCard"})),(0,i.mdx)("h2",null,"Loading compositions"),(0,i.mdx)("p",null,"The Environment in use will automatically detect the composition file for each component and use it to load its compositions to the workspace UI."),(0,i.mdx)("h2",null,"Viewing component compositions"),(0,i.mdx)("p",null,"To explore compositions in your Workspace UI, start the local development server for your workspace (",(0,i.mdx)("inlineCode",{parentName:"p"},"bit start"),"),\nbrowse to a specific component and select the ",(0,i.mdx)("strong",{parentName:"p"},"compositions")," tab.\nThere, you will see the full list of compositions available for that component, along with additional component meta-data."),(0,i.mdx)("h2",null,"Using compositions for automated testings"),(0,i.mdx)("p",null,"Component compositions can be used in automated testing as well as manual examinations. To do that, simply import the compositions in your test file to run the appropriate tests."),(0,i.mdx)("p",null,"For example, the below snapshot test checks the 'Button' component when the 'variant' prop is set to 'primary'.\nIn addition to simple unit tests, compositions play an important role in integration test as they provide feedback as to how a change to the component may affect potential usages."),(0,i.mdx)("pre",null,(0,i.mdx)("code",{parentName:"pre",className:"language-jsx"},"import React from 'react';\nimport testRenderer from 'react-test-renderer';\nimport { PrimaryButton } from './button.compositions.tsx';\n\ndescribe('Button', () => {\n it('renders correctly as \"primary\"', () => {\n const component = testRenderer.create(<PrimaryButton>test primary variant</PrimaryButton>);\n const tree = component.toJSON();\n expect(tree).toMatchSnapshot();\n });\n});\n")),(0,i.mdx)("h2",null,"Setting providers for all your compositions"),(0,i.mdx)("p",null,"Extend the React environment to customize its list of providers with your own composition providers.\nThe extended environment will then wrap every composition with these providers to make sure your themes or mock data are accessible to all of them,\nwithout you having to repeat that task ever again."),(0,i.mdx)("h2",null,"Compositions and storybook"),(0,i.mdx)("p",null,"Storybook displays individual components in different states and variations.\nIt is designed to help in authoring and displaying standalone components, each of which is usually part of a design system.\nIn contrast, 'Compositions' is mainly about examining how an independent component looks and behaves when used with other components.\nThese component integrations serve as a way to examine compositions that are likely to be part of real applications, using manual and automated testing."),(0,i.mdx)("p",null,"If you're looking for a Storybook-like solution, you can find that either in the Storybook extension (currently in development) or by using 'Compositions' for that use-case as well."))}f.__bit_component=n,f.isMDXComponent=!0},223:(e,o,t)=>{Object.defineProperty(o,"s",{enumerable:!0,get:function(){return n.default}});var n=i(t(9));function i(e){return e&&e.__esModule?e:{default:e}}i.__bit_component={id:"teambit.compositions/aspect-docs/compositions@0.0.168",homepage:"https://bit.cloud/teambit/compositions/aspect-docs/compositions",exported:!0}},38:(e,o,t)=>{var n={id:"teambit.compositions/compositions@1.0.469",homepage:"https://bit.cloud/teambit/compositions/compositions",exported:!0};function i(){const e=s(t(594));return i=function(){return e},e}function s(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(o,"__esModule",{value:!0}),o.Logo=void 0,i.__bit_component=n,s.__bit_component=n;const a=()=>i().default.createElement("div",{style:{height:"100%",display:"flex",justifyContent:"center"}},i().default.createElement("img",{style:{width:70},src:"https://static.bit.dev/extensions-icons/compositions.svg"}));a.__bit_component=n,o.Logo=a},16:e=>{e.exports=MdxJsReact},594:e=>{e.exports=React}},o={};function t(n){var i=o[n];if(void 0!==i)return i.exports;var s=o[n]={exports:{}};return e[n](s,s.exports,t),s.exports}t.d=(e,o)=>{for(var n in o)t.o(o,n)&&!t.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:o[n]})},t.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};t.r(n),t.d(n,{compositions:()=>h,compositions_metadata:()=>y,overview:()=>f});var i={};t.r(i),t.d(i,{default:()=>u});var s=t(38),a=(t(594),t(16));const r=TeambitMdxUiMdxScopeContext;var p=t(223),m=["components"];function c(){return c=Object.assign?Object.assign.bind():function(e){for(var o=1;o<arguments.length;o++){var t=arguments[o];for(var n in t)({}).hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},c.apply(null,arguments)}var l={},d="wrapper";function u(e){var o=e.components,t=function(e,o){if(null==e)return{};var t,n,i=function(e,o){if(null==e)return{};var t={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(o.includes(n))continue;t[n]=e[n]}return t}(e,o);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);for(n=0;n<s.length;n++)t=s[n],o.includes(t)||{}.propertyIsEnumerable.call(e,t)&&(i[t]=e[t])}return i}(e,m);return(0,a.mdx)(d,c({},l,t,{components:o,mdxType:"MDXLayout"}),(0,a.mdx)(r.MDXScopeProvider,{components:{Compositions:p.s},mdxType:"MDXScopeProvider"},(0,a.mdx)(p.s,{mdxType:"Compositions"})))}u.isMDXComponent=!0;const h=[s],f=[i],y={compositions:[{displayName:"Logo",identifier:"Logo"}]};return n})()));
|
|
1
|
+
!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o():"function"==typeof define&&define.amd?define([],o):"object"==typeof exports?exports["teambit.compositions/compositions-preview"]=o():e["teambit.compositions/compositions-preview"]=o()}(self,(()=>(()=>{"use strict";var e={969:(e,o,t)=>{var n={id:"teambit.compositions/aspect-docs/compositions@0.0.168",homepage:"https://bit.cloud/teambit/compositions/aspect-docs/compositions",exported:!0};Object.defineProperty(o,"__esModule",{value:!0}),o.default=f,a(t(594));var i=t(16),s=["components"];function a(e){return e&&e.__esModule?e:{default:e}}function r(){return r=Object.assign?Object.assign.bind():function(e){for(var o=1;o<arguments.length;o++){var t=arguments[o];for(var n in t)({}).hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},r.apply(null,arguments)}function p(e,o){if(null==e)return{};var t,n,i=m(e,o);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);for(n=0;n<s.length;n++)t=s[n],o.includes(t)||{}.propertyIsEnumerable.call(e,t)&&(i[t]=e[t])}return i}function m(e,o){if(null==e)return{};var t={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(o.includes(n))continue;t[n]=e[n]}return t}a.__bit_component=n,r.__bit_component=n,p.__bit_component=n,m.__bit_component=n;var c=function(e){return function(o){return console.warn("Component "+e+" was not imported, exported, or provided by MDXProvider as global scope"),(0,i.mdx)("div",o)}};c.__bit_component=n;var l=c("CompositionCard"),d=c("Button"),u={},h="wrapper";function f(e){var o=e.components,t=p(e,s);return(0,i.mdx)(h,r({},u,t,{components:o,mdxType:"MDXLayout"}),(0,i.mdx)("p",null,"The Compositions aspect renders component 'compositions' in isolation and displays them in the Workspace UI and Scope UI.\n'Compositions' are, essentially, small apps that exhibit and test a component in different contexts and variations."),(0,i.mdx)("p",null,'The Compositions aspect is an essential tool to authoring independent components as it renders component instances in "controlled environments", isolated and un-affected by code that was not purposefully included.\nThis sterile environment provides an accurate understanding of their look and behavior, for manual and automated testings.'),(0,i.mdx)("p",null,"Moreover, a component's composition is a way to demonstrate the component for other developers looking to use it, and non-developers, such as designers and product managers, looking to inspect it."),(0,i.mdx)("h4",null,"Features"),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"Create component examples with zero configuration:")," Write your compositions the same way you write your components.\nPlace your examples in the component's ",(0,i.mdx)("inlineCode",{parentName:"p"},"*.compositions.*")," file to have them rendered in the Workspace UI with no additional configurations."),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"See your components render in all relevant contexts:")," - Render components in the visual context of related and dependant components to learn how changes impact other components during development."),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"Hot-reloading in workspace UI:")," - See various instances of a component render live to reflect most recent changes. Get immediate feedbacks to changes in your component's code."),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"Compositions as visual documentation:")," - Compositions play an essential part in a component documentation. They demonstrate potential behaviors and use cases for that component. Compositions are another step in promoting components' discoverability, both in your local workspace and in remote scopes."),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"Compositions as test samples for your CI")," - Use your compositions as samples for automated integration and unit tests, to track and view the impact of changes on all affected components in your different scopes."),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"Developer-Designers collaboration")," - Make visual compositions accessible to designers (and everyone else) to include them in the development and release process of web applications, in a visual way."),(0,i.mdx)("h2",null,"Quickstart & configurations"),(0,i.mdx)("p",null,"Compositions require no configuration. Any ",(0,i.mdx)("inlineCode",{parentName:"p"},"*.compositions.*")," or ",(0,i.mdx)("inlineCode",{parentName:"p"},"*.composition.*")," file will be loaded and displayed in the workspace UI.\nAny tagged version of a component will have its composition included in its build artifacts, to be used as part of the component's preview."),(0,i.mdx)("p",null,"To add your own file pattern for compositions (to be automatically loaded and displayed by the Compositions aspect):"),(0,i.mdx)("pre",null,(0,i.mdx)("code",{parentName:"pre",className:"language-json"},'// In the workspace configuration file\n{\n "teambit.compositions/compositions": {\n "compositionFilePattern": ["**.my-pattern.tsx", "**.my-pattern-2.jsx"]\n }\n}\n')),(0,i.mdx)("h2",null,"Creating compositions"),(0,i.mdx)("blockquote",null,(0,i.mdx)("p",{parentName:"blockquote"},"This document uses React code as snippets.")),(0,i.mdx)("p",null,"Writing a composition does not require any configuration. Import the component to the component's ",(0,i.mdx)("inlineCode",{parentName:"p"},"*.compositions.tsx")," file, use it to build a composition and export the new component (a.k.a, the composition) with a named export."),(0,i.mdx)("p",null,"The name of the export will be converted from PascalCase/camelCase and used for the composition name (e.g, ",(0,i.mdx)("inlineCode",{parentName:"p"},'"CompositionName" --\x3e "Composition name"'),")."),(0,i.mdx)("p",null,(0,i.mdx)("strong",{parentName:"p"},"For example"),", we'll create two compositions, 'Primary button' and 'Secondary button', each of which demonstrates a different variant or usage of that component.\nBoth compositions will be in themed (i.e, displayed in a specific context)."),(0,i.mdx)("p",null,"First, we'll create a new composition file in the component's directory:"),(0,i.mdx)("pre",null,(0,i.mdx)("code",{parentName:"pre",className:"language-bash"},"touch path/to/component/directory/<component-name>.compositions.tsx\n")),(0,i.mdx)("p",null,"Then, we'll import the component and use it to create the compositions:"),(0,i.mdx)("pre",null,(0,i.mdx)("code",{parentName:"pre",className:"language-jsx{}[button.compositions.jsx]"},"import React from 'react';\nimport { IrisTheme } from '@my-organization/design-system/iris-theme';\nimport { Button } from './button';\n\nexport const PrimaryButton = () => {\n return (\n <IrisTheme>\n <Button importance=\"cta\" style={{ width: 120 }}>\n Primary\n </Button>\n </IrisTheme>\n );\n};\n\nexport const SecondaryButton = () => {\n return (\n <IrisTheme>\n <Button importance=\"ghost\" style={{ width: 120 }}>\n Secondary\n </Button>\n </IrisTheme>\n );\n};\n")),(0,i.mdx)("div",{style:{width:450,display:"flex",justifyContent:"space-between"}},(0,i.mdx)(l,{Composition:function(){return(0,i.mdx)(d,{importance:"cta",style:{width:120},mdxType:"Button"},"Primary")},name:"Primary",mdxType:"CompositionCard"}),(0,i.mdx)(l,{Composition:function(){return(0,i.mdx)(d,{importance:"ghost",style:{width:120},mdxType:"Button"},"Secondary")},name:"Secondary",mdxType:"CompositionCard"})),(0,i.mdx)("h2",null,"Loading compositions"),(0,i.mdx)("p",null,"The Environment in use will automatically detect the composition file for each component and use it to load its compositions to the workspace UI."),(0,i.mdx)("h2",null,"Viewing component compositions"),(0,i.mdx)("p",null,"To explore compositions in your Workspace UI, start the local development server for your workspace (",(0,i.mdx)("inlineCode",{parentName:"p"},"bit start"),"),\nbrowse to a specific component and select the ",(0,i.mdx)("strong",{parentName:"p"},"compositions")," tab.\nThere, you will see the full list of compositions available for that component, along with additional component meta-data."),(0,i.mdx)("h2",null,"Using compositions for automated testings"),(0,i.mdx)("p",null,"Component compositions can be used in automated testing as well as manual examinations. To do that, simply import the compositions in your test file to run the appropriate tests."),(0,i.mdx)("p",null,"For example, the below snapshot test checks the 'Button' component when the 'variant' prop is set to 'primary'.\nIn addition to simple unit tests, compositions play an important role in integration test as they provide feedback as to how a change to the component may affect potential usages."),(0,i.mdx)("pre",null,(0,i.mdx)("code",{parentName:"pre",className:"language-jsx"},"import React from 'react';\nimport testRenderer from 'react-test-renderer';\nimport { PrimaryButton } from './button.compositions.tsx';\n\ndescribe('Button', () => {\n it('renders correctly as \"primary\"', () => {\n const component = testRenderer.create(<PrimaryButton>test primary variant</PrimaryButton>);\n const tree = component.toJSON();\n expect(tree).toMatchSnapshot();\n });\n});\n")),(0,i.mdx)("h2",null,"Setting providers for all your compositions"),(0,i.mdx)("p",null,"Extend the React environment to customize its list of providers with your own composition providers.\nThe extended environment will then wrap every composition with these providers to make sure your themes or mock data are accessible to all of them,\nwithout you having to repeat that task ever again."),(0,i.mdx)("h2",null,"Compositions and storybook"),(0,i.mdx)("p",null,"Storybook displays individual components in different states and variations.\nIt is designed to help in authoring and displaying standalone components, each of which is usually part of a design system.\nIn contrast, 'Compositions' is mainly about examining how an independent component looks and behaves when used with other components.\nThese component integrations serve as a way to examine compositions that are likely to be part of real applications, using manual and automated testing."),(0,i.mdx)("p",null,"If you're looking for a Storybook-like solution, you can find that either in the Storybook extension (currently in development) or by using 'Compositions' for that use-case as well."))}f.__bit_component=n,f.isMDXComponent=!0},943:(e,o,t)=>{Object.defineProperty(o,"s",{enumerable:!0,get:function(){return n.default}});var n=i(t(969));function i(e){return e&&e.__esModule?e:{default:e}}i.__bit_component={id:"teambit.compositions/aspect-docs/compositions@0.0.168",homepage:"https://bit.cloud/teambit/compositions/aspect-docs/compositions",exported:!0}},736:(e,o,t)=>{var n={id:"teambit.compositions/compositions@1.0.470",homepage:"https://bit.cloud/teambit/compositions/compositions",exported:!0};function i(){const e=s(t(594));return i=function(){return e},e}function s(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(o,"__esModule",{value:!0}),o.Logo=void 0,i.__bit_component=n,s.__bit_component=n;const a=()=>i().default.createElement("div",{style:{height:"100%",display:"flex",justifyContent:"center"}},i().default.createElement("img",{style:{width:70},src:"https://static.bit.dev/extensions-icons/compositions.svg"}));a.__bit_component=n,o.Logo=a},16:e=>{e.exports=MdxJsReact},594:e=>{e.exports=React}},o={};function t(n){var i=o[n];if(void 0!==i)return i.exports;var s=o[n]={exports:{}};return e[n](s,s.exports,t),s.exports}t.d=(e,o)=>{for(var n in o)t.o(o,n)&&!t.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:o[n]})},t.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};t.r(n),t.d(n,{compositions:()=>h,compositions_metadata:()=>y,overview:()=>f});var i={};t.r(i),t.d(i,{default:()=>u});var s=t(736),a=(t(594),t(16));const r=TeambitMdxUiMdxScopeContext;var p=t(943),m=["components"];function c(){return c=Object.assign?Object.assign.bind():function(e){for(var o=1;o<arguments.length;o++){var t=arguments[o];for(var n in t)({}).hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},c.apply(null,arguments)}var l={},d="wrapper";function u(e){var o=e.components,t=function(e,o){if(null==e)return{};var t,n,i=function(e,o){if(null==e)return{};var t={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(o.includes(n))continue;t[n]=e[n]}return t}(e,o);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);for(n=0;n<s.length;n++)t=s[n],o.includes(t)||{}.propertyIsEnumerable.call(e,t)&&(i[t]=e[t])}return i}(e,m);return(0,a.mdx)(d,c({},l,t,{components:o,mdxType:"MDXLayout"}),(0,a.mdx)(r.MDXScopeProvider,{components:{Compositions:p.s},mdxType:"MDXScopeProvider"},(0,a.mdx)(p.s,{mdxType:"Compositions"})))}u.isMDXComponent=!0;const h=[s],f=[i],y={compositions:[{displayName:"Logo",identifier:"Logo"}]};return n})()));
|
package/artifacts/schema.json
CHANGED
|
@@ -160,11 +160,7 @@
|
|
|
160
160
|
"line": 50,
|
|
161
161
|
"character": 22
|
|
162
162
|
},
|
|
163
|
-
"name": "PreviewMain"
|
|
164
|
-
"componentId": {
|
|
165
|
-
"scope": "teambit.preview",
|
|
166
|
-
"name": "preview"
|
|
167
|
-
}
|
|
163
|
+
"name": "PreviewMain"
|
|
168
164
|
},
|
|
169
165
|
"isOptional": false,
|
|
170
166
|
"isSpread": false
|
|
@@ -184,11 +180,7 @@
|
|
|
184
180
|
"line": 55,
|
|
185
181
|
"character": 24
|
|
186
182
|
},
|
|
187
|
-
"name": "Workspace"
|
|
188
|
-
"componentId": {
|
|
189
|
-
"scope": "teambit.workspace",
|
|
190
|
-
"name": "workspace"
|
|
191
|
-
}
|
|
183
|
+
"name": "Workspace"
|
|
192
184
|
},
|
|
193
185
|
"isOptional": false,
|
|
194
186
|
"isSpread": false
|
|
@@ -208,11 +200,7 @@
|
|
|
208
200
|
"line": 60,
|
|
209
201
|
"character": 21
|
|
210
202
|
},
|
|
211
|
-
"name": "SchemaMain"
|
|
212
|
-
"componentId": {
|
|
213
|
-
"scope": "teambit.semantics",
|
|
214
|
-
"name": "schema"
|
|
215
|
-
}
|
|
203
|
+
"name": "SchemaMain"
|
|
216
204
|
},
|
|
217
205
|
"isOptional": false,
|
|
218
206
|
"isSpread": false
|
|
@@ -232,11 +220,7 @@
|
|
|
232
220
|
"line": 62,
|
|
233
221
|
"character": 23
|
|
234
222
|
},
|
|
235
|
-
"name": "DevFilesMain"
|
|
236
|
-
"componentId": {
|
|
237
|
-
"scope": "teambit.component",
|
|
238
|
-
"name": "dev-files"
|
|
239
|
-
}
|
|
223
|
+
"name": "DevFilesMain"
|
|
240
224
|
},
|
|
241
225
|
"isOptional": false,
|
|
242
226
|
"isSpread": false
|
|
@@ -256,11 +240,7 @@
|
|
|
256
240
|
"line": 64,
|
|
257
241
|
"character": 19
|
|
258
242
|
},
|
|
259
|
-
"name": "EnvsMain"
|
|
260
|
-
"componentId": {
|
|
261
|
-
"scope": "teambit.envs",
|
|
262
|
-
"name": "envs"
|
|
263
|
-
}
|
|
243
|
+
"name": "EnvsMain"
|
|
264
244
|
},
|
|
265
245
|
"isOptional": false,
|
|
266
246
|
"isSpread": false
|
|
@@ -320,11 +300,7 @@
|
|
|
320
300
|
"line": 70,
|
|
321
301
|
"character": 31
|
|
322
302
|
},
|
|
323
|
-
"name": "Component"
|
|
324
|
-
"componentId": {
|
|
325
|
-
"scope": "teambit.component",
|
|
326
|
-
"name": "component"
|
|
327
|
-
}
|
|
303
|
+
"name": "Component"
|
|
328
304
|
}
|
|
329
305
|
},
|
|
330
306
|
"isOptional": false,
|
|
@@ -339,10 +315,6 @@
|
|
|
339
315
|
"character": 45
|
|
340
316
|
},
|
|
341
317
|
"name": "ComponentMap",
|
|
342
|
-
"componentId": {
|
|
343
|
-
"scope": "teambit.component",
|
|
344
|
-
"name": "component"
|
|
345
|
-
},
|
|
346
318
|
"typeArgs": [
|
|
347
319
|
{
|
|
348
320
|
"__schema": "TypeArraySchema",
|
|
@@ -358,12 +330,7 @@
|
|
|
358
330
|
"line": 70,
|
|
359
331
|
"character": 58
|
|
360
332
|
},
|
|
361
|
-
"name": "AbstractVinyl"
|
|
362
|
-
"componentId": {
|
|
363
|
-
"scope": "teambit.component",
|
|
364
|
-
"name": "sources",
|
|
365
|
-
"version": "0.0.45"
|
|
366
|
-
}
|
|
333
|
+
"name": "AbstractVinyl"
|
|
367
334
|
}
|
|
368
335
|
}
|
|
369
336
|
]
|
|
@@ -459,11 +426,7 @@
|
|
|
459
426
|
"line": 96,
|
|
460
427
|
"character": 30
|
|
461
428
|
},
|
|
462
|
-
"name": "IComponent"
|
|
463
|
-
"componentId": {
|
|
464
|
-
"scope": "teambit.component",
|
|
465
|
-
"name": "component"
|
|
466
|
-
}
|
|
429
|
+
"name": "IComponent"
|
|
467
430
|
},
|
|
468
431
|
"isOptional": false,
|
|
469
432
|
"isSpread": false
|
|
@@ -524,11 +487,7 @@
|
|
|
524
487
|
"line": 108,
|
|
525
488
|
"character": 31
|
|
526
489
|
},
|
|
527
|
-
"name": "Component"
|
|
528
|
-
"componentId": {
|
|
529
|
-
"scope": "teambit.component",
|
|
530
|
-
"name": "component"
|
|
531
|
-
}
|
|
490
|
+
"name": "Component"
|
|
532
491
|
},
|
|
533
492
|
"isOptional": false,
|
|
534
493
|
"isSpread": false
|
|
@@ -599,11 +558,7 @@
|
|
|
599
558
|
"line": 120,
|
|
600
559
|
"character": 38
|
|
601
560
|
},
|
|
602
|
-
"name": "Component"
|
|
603
|
-
"componentId": {
|
|
604
|
-
"scope": "teambit.component",
|
|
605
|
-
"name": "component"
|
|
606
|
-
}
|
|
561
|
+
"name": "Component"
|
|
607
562
|
},
|
|
608
563
|
"isOptional": false,
|
|
609
564
|
"isSpread": false
|
|
@@ -666,11 +621,7 @@
|
|
|
666
621
|
"line": 133,
|
|
667
622
|
"character": 36
|
|
668
623
|
},
|
|
669
|
-
"name": "Component"
|
|
670
|
-
"componentId": {
|
|
671
|
-
"scope": "teambit.component",
|
|
672
|
-
"name": "component"
|
|
673
|
-
}
|
|
624
|
+
"name": "Component"
|
|
674
625
|
},
|
|
675
626
|
"isOptional": false,
|
|
676
627
|
"isSpread": false
|
|
@@ -690,8 +641,7 @@
|
|
|
690
641
|
"line": 133,
|
|
691
642
|
"character": 58
|
|
692
643
|
},
|
|
693
|
-
"name": "ComponentLoadOptions"
|
|
694
|
-
"packageName": "@teambit/legacy/dist/consumer/component/component-loader"
|
|
644
|
+
"name": "ComponentLoadOptions"
|
|
695
645
|
},
|
|
696
646
|
"isOptional": true,
|
|
697
647
|
"isSpread": false
|
|
@@ -721,11 +671,7 @@
|
|
|
721
671
|
"line": 133,
|
|
722
672
|
"character": 89
|
|
723
673
|
},
|
|
724
|
-
"name": "AspectData"
|
|
725
|
-
"componentId": {
|
|
726
|
-
"scope": "teambit.component",
|
|
727
|
-
"name": "component"
|
|
728
|
-
}
|
|
674
|
+
"name": "AspectData"
|
|
729
675
|
},
|
|
730
676
|
{
|
|
731
677
|
"__schema": "KeywordTypeSchema",
|
|
@@ -841,11 +787,7 @@
|
|
|
841
787
|
"line": 177,
|
|
842
788
|
"character": 7
|
|
843
789
|
},
|
|
844
|
-
"name": "PreviewMain"
|
|
845
|
-
"componentId": {
|
|
846
|
-
"scope": "teambit.preview",
|
|
847
|
-
"name": "preview"
|
|
848
|
-
}
|
|
790
|
+
"name": "PreviewMain"
|
|
849
791
|
},
|
|
850
792
|
{
|
|
851
793
|
"__schema": "TypeRefSchema",
|
|
@@ -854,11 +796,7 @@
|
|
|
854
796
|
"line": 178,
|
|
855
797
|
"character": 7
|
|
856
798
|
},
|
|
857
|
-
"name": "GraphqlMain"
|
|
858
|
-
"componentId": {
|
|
859
|
-
"scope": "teambit.harmony",
|
|
860
|
-
"name": "graphql"
|
|
861
|
-
}
|
|
799
|
+
"name": "GraphqlMain"
|
|
862
800
|
},
|
|
863
801
|
{
|
|
864
802
|
"__schema": "TypeRefSchema",
|
|
@@ -867,11 +805,7 @@
|
|
|
867
805
|
"line": 179,
|
|
868
806
|
"character": 7
|
|
869
807
|
},
|
|
870
|
-
"name": "Workspace"
|
|
871
|
-
"componentId": {
|
|
872
|
-
"scope": "teambit.workspace",
|
|
873
|
-
"name": "workspace"
|
|
874
|
-
}
|
|
808
|
+
"name": "Workspace"
|
|
875
809
|
},
|
|
876
810
|
{
|
|
877
811
|
"__schema": "TypeRefSchema",
|
|
@@ -880,11 +814,7 @@
|
|
|
880
814
|
"line": 180,
|
|
881
815
|
"character": 7
|
|
882
816
|
},
|
|
883
|
-
"name": "SchemaMain"
|
|
884
|
-
"componentId": {
|
|
885
|
-
"scope": "teambit.semantics",
|
|
886
|
-
"name": "schema"
|
|
887
|
-
}
|
|
817
|
+
"name": "SchemaMain"
|
|
888
818
|
},
|
|
889
819
|
{
|
|
890
820
|
"__schema": "TypeRefSchema",
|
|
@@ -893,11 +823,7 @@
|
|
|
893
823
|
"line": 181,
|
|
894
824
|
"character": 7
|
|
895
825
|
},
|
|
896
|
-
"name": "DevFilesMain"
|
|
897
|
-
"componentId": {
|
|
898
|
-
"scope": "teambit.component",
|
|
899
|
-
"name": "dev-files"
|
|
900
|
-
}
|
|
826
|
+
"name": "DevFilesMain"
|
|
901
827
|
},
|
|
902
828
|
{
|
|
903
829
|
"__schema": "TypeRefSchema",
|
|
@@ -906,11 +832,7 @@
|
|
|
906
832
|
"line": 182,
|
|
907
833
|
"character": 7
|
|
908
834
|
},
|
|
909
|
-
"name": "EnvsMain"
|
|
910
|
-
"componentId": {
|
|
911
|
-
"scope": "teambit.envs",
|
|
912
|
-
"name": "envs"
|
|
913
|
-
}
|
|
835
|
+
"name": "EnvsMain"
|
|
914
836
|
},
|
|
915
837
|
{
|
|
916
838
|
"__schema": "TypeRefSchema",
|
|
@@ -919,11 +841,7 @@
|
|
|
919
841
|
"line": 183,
|
|
920
842
|
"character": 7
|
|
921
843
|
},
|
|
922
|
-
"name": "ScopeMain"
|
|
923
|
-
"componentId": {
|
|
924
|
-
"scope": "teambit.scope",
|
|
925
|
-
"name": "scope"
|
|
926
|
-
}
|
|
844
|
+
"name": "ScopeMain"
|
|
927
845
|
}
|
|
928
846
|
]
|
|
929
847
|
},
|
|
@@ -945,8 +863,7 @@
|
|
|
945
863
|
"line": 185,
|
|
946
864
|
"character": 13
|
|
947
865
|
},
|
|
948
|
-
"name": "CompositionsConfig"
|
|
949
|
-
"internalFilePath": "compositions.main.runtime.ts"
|
|
866
|
+
"name": "CompositionsConfig"
|
|
950
867
|
},
|
|
951
868
|
"isOptional": false,
|
|
952
869
|
"isSpread": false
|
|
@@ -1088,8 +1005,7 @@
|
|
|
1088
1005
|
"line": 24,
|
|
1089
1006
|
"character": 43
|
|
1090
1007
|
},
|
|
1091
|
-
"name": "ComponentType"
|
|
1092
|
-
"packageName": "react"
|
|
1008
|
+
"name": "ComponentType"
|
|
1093
1009
|
},
|
|
1094
1010
|
"isOptional": false,
|
|
1095
1011
|
"isSpread": false
|
|
@@ -1138,8 +1054,7 @@
|
|
|
1138
1054
|
"line": 29,
|
|
1139
1055
|
"character": 33
|
|
1140
1056
|
},
|
|
1141
|
-
"name": "MenuBarWidget"
|
|
1142
|
-
"internalFilePath": "compositions.tsx"
|
|
1057
|
+
"name": "MenuBarWidget"
|
|
1143
1058
|
}
|
|
1144
1059
|
},
|
|
1145
1060
|
"isOptional": false,
|
|
@@ -1274,11 +1189,7 @@
|
|
|
1274
1189
|
"line": 49,
|
|
1275
1190
|
"character": 37
|
|
1276
1191
|
},
|
|
1277
|
-
"name": "ComponentUI"
|
|
1278
|
-
"componentId": {
|
|
1279
|
-
"scope": "teambit.component",
|
|
1280
|
-
"name": "component"
|
|
1281
|
-
}
|
|
1192
|
+
"name": "ComponentUI"
|
|
1282
1193
|
},
|
|
1283
1194
|
{
|
|
1284
1195
|
"__schema": "TypeRefSchema",
|
|
@@ -1287,11 +1198,7 @@
|
|
|
1287
1198
|
"line": 49,
|
|
1288
1199
|
"character": 50
|
|
1289
1200
|
},
|
|
1290
|
-
"name": "ComponentCompareUI"
|
|
1291
|
-
"componentId": {
|
|
1292
|
-
"scope": "teambit.component",
|
|
1293
|
-
"name": "component-compare"
|
|
1294
|
-
}
|
|
1201
|
+
"name": "ComponentCompareUI"
|
|
1295
1202
|
}
|
|
1296
1203
|
]
|
|
1297
1204
|
},
|
|
@@ -1403,11 +1310,6 @@
|
|
|
1403
1310
|
"character": 36
|
|
1404
1311
|
},
|
|
1405
1312
|
"name": "SlotRegistry",
|
|
1406
|
-
"componentId": {
|
|
1407
|
-
"scope": "teambit.harmony",
|
|
1408
|
-
"name": "harmony",
|
|
1409
|
-
"version": "0.4.6"
|
|
1410
|
-
},
|
|
1411
1313
|
"typeArgs": [
|
|
1412
1314
|
{
|
|
1413
1315
|
"__schema": "TypeArraySchema",
|
|
@@ -1423,8 +1325,7 @@
|
|
|
1423
1325
|
"line": 13,
|
|
1424
1326
|
"character": 49
|
|
1425
1327
|
},
|
|
1426
|
-
"name": "MenuBarWidget"
|
|
1427
|
-
"internalFilePath": "compositions.tsx"
|
|
1328
|
+
"name": "MenuBarWidget"
|
|
1428
1329
|
}
|
|
1429
1330
|
}
|
|
1430
1331
|
]
|
|
@@ -1457,11 +1358,6 @@
|
|
|
1457
1358
|
"character": 30
|
|
1458
1359
|
},
|
|
1459
1360
|
"name": "SlotRegistry",
|
|
1460
|
-
"componentId": {
|
|
1461
|
-
"scope": "teambit.harmony",
|
|
1462
|
-
"name": "harmony",
|
|
1463
|
-
"version": "0.4.6"
|
|
1464
|
-
},
|
|
1465
1361
|
"typeArgs": [
|
|
1466
1362
|
{
|
|
1467
1363
|
"__schema": "TypeRefSchema",
|
|
@@ -1470,8 +1366,7 @@
|
|
|
1470
1366
|
"line": 14,
|
|
1471
1367
|
"character": 43
|
|
1472
1368
|
},
|
|
1473
|
-
"name": "ComponentType"
|
|
1474
|
-
"packageName": "react"
|
|
1369
|
+
"name": "ComponentType"
|
|
1475
1370
|
}
|
|
1476
1371
|
]
|
|
1477
1372
|
}
|
|
@@ -1949,8 +1844,7 @@
|
|
|
1949
1844
|
"line": 166,
|
|
1950
1845
|
"character": 5
|
|
1951
1846
|
},
|
|
1952
|
-
"name": "ComponentCompositionProps"
|
|
1953
|
-
"internalFilePath": "ui/composition-preview.tsx"
|
|
1847
|
+
"name": "ComponentCompositionProps"
|
|
1954
1848
|
}
|
|
1955
1849
|
]
|
|
1956
1850
|
}
|
|
@@ -2110,11 +2004,7 @@
|
|
|
2110
2004
|
"line": 20,
|
|
2111
2005
|
"character": 22
|
|
2112
2006
|
},
|
|
2113
|
-
"name": "PreviewPreview"
|
|
2114
|
-
"componentId": {
|
|
2115
|
-
"scope": "teambit.preview",
|
|
2116
|
-
"name": "preview"
|
|
2117
|
-
}
|
|
2007
|
+
"name": "PreviewPreview"
|
|
2118
2008
|
},
|
|
2119
2009
|
"isOptional": false,
|
|
2120
2010
|
"isSpread": false
|
|
@@ -2156,12 +2046,7 @@
|
|
|
2156
2046
|
"line": 23,
|
|
2157
2047
|
"character": 23
|
|
2158
2048
|
},
|
|
2159
|
-
"name": "ComponentID"
|
|
2160
|
-
"componentId": {
|
|
2161
|
-
"scope": "teambit.component",
|
|
2162
|
-
"name": "component-id",
|
|
2163
|
-
"version": "1.2.2"
|
|
2164
|
-
}
|
|
2049
|
+
"name": "ComponentID"
|
|
2165
2050
|
},
|
|
2166
2051
|
"isOptional": false,
|
|
2167
2052
|
"isSpread": false
|
|
@@ -2201,11 +2086,7 @@
|
|
|
2201
2086
|
"line": 23,
|
|
2202
2087
|
"character": 60
|
|
2203
2088
|
},
|
|
2204
|
-
"name": "PreviewModule"
|
|
2205
|
-
"componentId": {
|
|
2206
|
-
"scope": "teambit.preview",
|
|
2207
|
-
"name": "preview"
|
|
2208
|
-
}
|
|
2089
|
+
"name": "PreviewModule"
|
|
2209
2090
|
},
|
|
2210
2091
|
"isOptional": false,
|
|
2211
2092
|
"isSpread": false
|
|
@@ -2245,11 +2126,7 @@
|
|
|
2245
2126
|
"line": 23,
|
|
2246
2127
|
"character": 102
|
|
2247
2128
|
},
|
|
2248
|
-
"name": "RenderingContext"
|
|
2249
|
-
"componentId": {
|
|
2250
|
-
"scope": "teambit.preview",
|
|
2251
|
-
"name": "preview"
|
|
2252
|
-
}
|
|
2129
|
+
"name": "RenderingContext"
|
|
2253
2130
|
},
|
|
2254
2131
|
"isOptional": false,
|
|
2255
2132
|
"isSpread": false
|
|
@@ -2322,11 +2199,7 @@
|
|
|
2322
2199
|
"line": 42,
|
|
2323
2200
|
"character": 64
|
|
2324
2201
|
},
|
|
2325
|
-
"name": "PreviewModule"
|
|
2326
|
-
"componentId": {
|
|
2327
|
-
"scope": "teambit.preview",
|
|
2328
|
-
"name": "preview"
|
|
2329
|
-
}
|
|
2202
|
+
"name": "PreviewModule"
|
|
2330
2203
|
},
|
|
2331
2204
|
"isOptional": false,
|
|
2332
2205
|
"isSpread": false
|
|
@@ -2388,11 +2261,7 @@
|
|
|
2388
2261
|
"line": 50,
|
|
2389
2262
|
"character": 57
|
|
2390
2263
|
},
|
|
2391
|
-
"name": "PreviewModule"
|
|
2392
|
-
"componentId": {
|
|
2393
|
-
"scope": "teambit.preview",
|
|
2394
|
-
"name": "preview"
|
|
2395
|
-
}
|
|
2264
|
+
"name": "PreviewModule"
|
|
2396
2265
|
},
|
|
2397
2266
|
"isOptional": false,
|
|
2398
2267
|
"isSpread": false
|
|
@@ -2413,8 +2282,7 @@
|
|
|
2413
2282
|
"line": 50,
|
|
2414
2283
|
"character": 73
|
|
2415
2284
|
},
|
|
2416
|
-
"name": "CompositionBrowserMetadataObject"
|
|
2417
|
-
"internalFilePath": "composition.ts"
|
|
2285
|
+
"name": "CompositionBrowserMetadataObject"
|
|
2418
2286
|
},
|
|
2419
2287
|
{
|
|
2420
2288
|
"__schema": "KeywordTypeSchema",
|
|
@@ -2504,11 +2372,7 @@
|
|
|
2504
2372
|
"line": 85,
|
|
2505
2373
|
"character": 37
|
|
2506
2374
|
},
|
|
2507
|
-
"name": "PreviewPreview"
|
|
2508
|
-
"componentId": {
|
|
2509
|
-
"scope": "teambit.preview",
|
|
2510
|
-
"name": "preview"
|
|
2511
|
-
}
|
|
2375
|
+
"name": "PreviewPreview"
|
|
2512
2376
|
}
|
|
2513
2377
|
]
|
|
2514
2378
|
},
|
|
@@ -2568,8 +2432,7 @@
|
|
|
2568
2432
|
"line": 13,
|
|
2569
2433
|
"character": 93
|
|
2570
2434
|
},
|
|
2571
|
-
"name": "ComponentCompositionProps"
|
|
2572
|
-
"internalFilePath": "ui/composition-preview.tsx"
|
|
2435
|
+
"name": "ComponentCompositionProps"
|
|
2573
2436
|
},
|
|
2574
2437
|
"isOptional": false,
|
|
2575
2438
|
"objectBindingNodes": [
|
|
@@ -2927,11 +2790,7 @@
|
|
|
2927
2790
|
"line": 50,
|
|
2928
2791
|
"character": 22
|
|
2929
2792
|
},
|
|
2930
|
-
"name": "PreviewMain"
|
|
2931
|
-
"componentId": {
|
|
2932
|
-
"scope": "teambit.preview",
|
|
2933
|
-
"name": "preview"
|
|
2934
|
-
}
|
|
2793
|
+
"name": "PreviewMain"
|
|
2935
2794
|
},
|
|
2936
2795
|
"isOptional": false,
|
|
2937
2796
|
"isSpread": false
|
|
@@ -2951,11 +2810,7 @@
|
|
|
2951
2810
|
"line": 55,
|
|
2952
2811
|
"character": 24
|
|
2953
2812
|
},
|
|
2954
|
-
"name": "Workspace"
|
|
2955
|
-
"componentId": {
|
|
2956
|
-
"scope": "teambit.workspace",
|
|
2957
|
-
"name": "workspace"
|
|
2958
|
-
}
|
|
2813
|
+
"name": "Workspace"
|
|
2959
2814
|
},
|
|
2960
2815
|
"isOptional": false,
|
|
2961
2816
|
"isSpread": false
|
|
@@ -2975,11 +2830,7 @@
|
|
|
2975
2830
|
"line": 60,
|
|
2976
2831
|
"character": 21
|
|
2977
2832
|
},
|
|
2978
|
-
"name": "SchemaMain"
|
|
2979
|
-
"componentId": {
|
|
2980
|
-
"scope": "teambit.semantics",
|
|
2981
|
-
"name": "schema"
|
|
2982
|
-
}
|
|
2833
|
+
"name": "SchemaMain"
|
|
2983
2834
|
},
|
|
2984
2835
|
"isOptional": false,
|
|
2985
2836
|
"isSpread": false
|
|
@@ -2999,11 +2850,7 @@
|
|
|
2999
2850
|
"line": 62,
|
|
3000
2851
|
"character": 23
|
|
3001
2852
|
},
|
|
3002
|
-
"name": "DevFilesMain"
|
|
3003
|
-
"componentId": {
|
|
3004
|
-
"scope": "teambit.component",
|
|
3005
|
-
"name": "dev-files"
|
|
3006
|
-
}
|
|
2853
|
+
"name": "DevFilesMain"
|
|
3007
2854
|
},
|
|
3008
2855
|
"isOptional": false,
|
|
3009
2856
|
"isSpread": false
|
|
@@ -3023,11 +2870,7 @@
|
|
|
3023
2870
|
"line": 64,
|
|
3024
2871
|
"character": 19
|
|
3025
2872
|
},
|
|
3026
|
-
"name": "EnvsMain"
|
|
3027
|
-
"componentId": {
|
|
3028
|
-
"scope": "teambit.envs",
|
|
3029
|
-
"name": "envs"
|
|
3030
|
-
}
|
|
2873
|
+
"name": "EnvsMain"
|
|
3031
2874
|
},
|
|
3032
2875
|
"isOptional": false,
|
|
3033
2876
|
"isSpread": false
|
|
@@ -3087,11 +2930,7 @@
|
|
|
3087
2930
|
"line": 70,
|
|
3088
2931
|
"character": 31
|
|
3089
2932
|
},
|
|
3090
|
-
"name": "Component"
|
|
3091
|
-
"componentId": {
|
|
3092
|
-
"scope": "teambit.component",
|
|
3093
|
-
"name": "component"
|
|
3094
|
-
}
|
|
2933
|
+
"name": "Component"
|
|
3095
2934
|
}
|
|
3096
2935
|
},
|
|
3097
2936
|
"isOptional": false,
|
|
@@ -3106,10 +2945,6 @@
|
|
|
3106
2945
|
"character": 45
|
|
3107
2946
|
},
|
|
3108
2947
|
"name": "ComponentMap",
|
|
3109
|
-
"componentId": {
|
|
3110
|
-
"scope": "teambit.component",
|
|
3111
|
-
"name": "component"
|
|
3112
|
-
},
|
|
3113
2948
|
"typeArgs": [
|
|
3114
2949
|
{
|
|
3115
2950
|
"__schema": "TypeArraySchema",
|
|
@@ -3125,12 +2960,7 @@
|
|
|
3125
2960
|
"line": 70,
|
|
3126
2961
|
"character": 58
|
|
3127
2962
|
},
|
|
3128
|
-
"name": "AbstractVinyl"
|
|
3129
|
-
"componentId": {
|
|
3130
|
-
"scope": "teambit.component",
|
|
3131
|
-
"name": "sources",
|
|
3132
|
-
"version": "0.0.45"
|
|
3133
|
-
}
|
|
2963
|
+
"name": "AbstractVinyl"
|
|
3134
2964
|
}
|
|
3135
2965
|
}
|
|
3136
2966
|
]
|
|
@@ -3226,11 +3056,7 @@
|
|
|
3226
3056
|
"line": 96,
|
|
3227
3057
|
"character": 30
|
|
3228
3058
|
},
|
|
3229
|
-
"name": "IComponent"
|
|
3230
|
-
"componentId": {
|
|
3231
|
-
"scope": "teambit.component",
|
|
3232
|
-
"name": "component"
|
|
3233
|
-
}
|
|
3059
|
+
"name": "IComponent"
|
|
3234
3060
|
},
|
|
3235
3061
|
"isOptional": false,
|
|
3236
3062
|
"isSpread": false
|
|
@@ -3291,11 +3117,7 @@
|
|
|
3291
3117
|
"line": 108,
|
|
3292
3118
|
"character": 31
|
|
3293
3119
|
},
|
|
3294
|
-
"name": "Component"
|
|
3295
|
-
"componentId": {
|
|
3296
|
-
"scope": "teambit.component",
|
|
3297
|
-
"name": "component"
|
|
3298
|
-
}
|
|
3120
|
+
"name": "Component"
|
|
3299
3121
|
},
|
|
3300
3122
|
"isOptional": false,
|
|
3301
3123
|
"isSpread": false
|
|
@@ -3366,11 +3188,7 @@
|
|
|
3366
3188
|
"line": 120,
|
|
3367
3189
|
"character": 38
|
|
3368
3190
|
},
|
|
3369
|
-
"name": "Component"
|
|
3370
|
-
"componentId": {
|
|
3371
|
-
"scope": "teambit.component",
|
|
3372
|
-
"name": "component"
|
|
3373
|
-
}
|
|
3191
|
+
"name": "Component"
|
|
3374
3192
|
},
|
|
3375
3193
|
"isOptional": false,
|
|
3376
3194
|
"isSpread": false
|
|
@@ -3433,11 +3251,7 @@
|
|
|
3433
3251
|
"line": 133,
|
|
3434
3252
|
"character": 36
|
|
3435
3253
|
},
|
|
3436
|
-
"name": "Component"
|
|
3437
|
-
"componentId": {
|
|
3438
|
-
"scope": "teambit.component",
|
|
3439
|
-
"name": "component"
|
|
3440
|
-
}
|
|
3254
|
+
"name": "Component"
|
|
3441
3255
|
},
|
|
3442
3256
|
"isOptional": false,
|
|
3443
3257
|
"isSpread": false
|
|
@@ -3457,8 +3271,7 @@
|
|
|
3457
3271
|
"line": 133,
|
|
3458
3272
|
"character": 58
|
|
3459
3273
|
},
|
|
3460
|
-
"name": "ComponentLoadOptions"
|
|
3461
|
-
"packageName": "@teambit/legacy/dist/consumer/component/component-loader"
|
|
3274
|
+
"name": "ComponentLoadOptions"
|
|
3462
3275
|
},
|
|
3463
3276
|
"isOptional": true,
|
|
3464
3277
|
"isSpread": false
|
|
@@ -3488,11 +3301,7 @@
|
|
|
3488
3301
|
"line": 133,
|
|
3489
3302
|
"character": 89
|
|
3490
3303
|
},
|
|
3491
|
-
"name": "AspectData"
|
|
3492
|
-
"componentId": {
|
|
3493
|
-
"scope": "teambit.component",
|
|
3494
|
-
"name": "component"
|
|
3495
|
-
}
|
|
3304
|
+
"name": "AspectData"
|
|
3496
3305
|
},
|
|
3497
3306
|
{
|
|
3498
3307
|
"__schema": "KeywordTypeSchema",
|
|
@@ -3608,11 +3417,7 @@
|
|
|
3608
3417
|
"line": 177,
|
|
3609
3418
|
"character": 7
|
|
3610
3419
|
},
|
|
3611
|
-
"name": "PreviewMain"
|
|
3612
|
-
"componentId": {
|
|
3613
|
-
"scope": "teambit.preview",
|
|
3614
|
-
"name": "preview"
|
|
3615
|
-
}
|
|
3420
|
+
"name": "PreviewMain"
|
|
3616
3421
|
},
|
|
3617
3422
|
{
|
|
3618
3423
|
"__schema": "TypeRefSchema",
|
|
@@ -3621,11 +3426,7 @@
|
|
|
3621
3426
|
"line": 178,
|
|
3622
3427
|
"character": 7
|
|
3623
3428
|
},
|
|
3624
|
-
"name": "GraphqlMain"
|
|
3625
|
-
"componentId": {
|
|
3626
|
-
"scope": "teambit.harmony",
|
|
3627
|
-
"name": "graphql"
|
|
3628
|
-
}
|
|
3429
|
+
"name": "GraphqlMain"
|
|
3629
3430
|
},
|
|
3630
3431
|
{
|
|
3631
3432
|
"__schema": "TypeRefSchema",
|
|
@@ -3634,11 +3435,7 @@
|
|
|
3634
3435
|
"line": 179,
|
|
3635
3436
|
"character": 7
|
|
3636
3437
|
},
|
|
3637
|
-
"name": "Workspace"
|
|
3638
|
-
"componentId": {
|
|
3639
|
-
"scope": "teambit.workspace",
|
|
3640
|
-
"name": "workspace"
|
|
3641
|
-
}
|
|
3438
|
+
"name": "Workspace"
|
|
3642
3439
|
},
|
|
3643
3440
|
{
|
|
3644
3441
|
"__schema": "TypeRefSchema",
|
|
@@ -3647,11 +3444,7 @@
|
|
|
3647
3444
|
"line": 180,
|
|
3648
3445
|
"character": 7
|
|
3649
3446
|
},
|
|
3650
|
-
"name": "SchemaMain"
|
|
3651
|
-
"componentId": {
|
|
3652
|
-
"scope": "teambit.semantics",
|
|
3653
|
-
"name": "schema"
|
|
3654
|
-
}
|
|
3447
|
+
"name": "SchemaMain"
|
|
3655
3448
|
},
|
|
3656
3449
|
{
|
|
3657
3450
|
"__schema": "TypeRefSchema",
|
|
@@ -3660,11 +3453,7 @@
|
|
|
3660
3453
|
"line": 181,
|
|
3661
3454
|
"character": 7
|
|
3662
3455
|
},
|
|
3663
|
-
"name": "DevFilesMain"
|
|
3664
|
-
"componentId": {
|
|
3665
|
-
"scope": "teambit.component",
|
|
3666
|
-
"name": "dev-files"
|
|
3667
|
-
}
|
|
3456
|
+
"name": "DevFilesMain"
|
|
3668
3457
|
},
|
|
3669
3458
|
{
|
|
3670
3459
|
"__schema": "TypeRefSchema",
|
|
@@ -3673,11 +3462,7 @@
|
|
|
3673
3462
|
"line": 182,
|
|
3674
3463
|
"character": 7
|
|
3675
3464
|
},
|
|
3676
|
-
"name": "EnvsMain"
|
|
3677
|
-
"componentId": {
|
|
3678
|
-
"scope": "teambit.envs",
|
|
3679
|
-
"name": "envs"
|
|
3680
|
-
}
|
|
3465
|
+
"name": "EnvsMain"
|
|
3681
3466
|
},
|
|
3682
3467
|
{
|
|
3683
3468
|
"__schema": "TypeRefSchema",
|
|
@@ -3686,11 +3471,7 @@
|
|
|
3686
3471
|
"line": 183,
|
|
3687
3472
|
"character": 7
|
|
3688
3473
|
},
|
|
3689
|
-
"name": "ScopeMain"
|
|
3690
|
-
"componentId": {
|
|
3691
|
-
"scope": "teambit.scope",
|
|
3692
|
-
"name": "scope"
|
|
3693
|
-
}
|
|
3474
|
+
"name": "ScopeMain"
|
|
3694
3475
|
}
|
|
3695
3476
|
]
|
|
3696
3477
|
},
|
|
@@ -3712,8 +3493,7 @@
|
|
|
3712
3493
|
"line": 185,
|
|
3713
3494
|
"character": 13
|
|
3714
3495
|
},
|
|
3715
|
-
"name": "CompositionsConfig"
|
|
3716
|
-
"internalFilePath": "compositions.main.runtime.ts"
|
|
3496
|
+
"name": "CompositionsConfig"
|
|
3717
3497
|
},
|
|
3718
3498
|
"isOptional": false,
|
|
3719
3499
|
"isSpread": false
|
|
@@ -3776,11 +3556,6 @@
|
|
|
3776
3556
|
"character": 36
|
|
3777
3557
|
},
|
|
3778
3558
|
"name": "SlotRegistry",
|
|
3779
|
-
"componentId": {
|
|
3780
|
-
"scope": "teambit.harmony",
|
|
3781
|
-
"name": "harmony",
|
|
3782
|
-
"version": "0.4.6"
|
|
3783
|
-
},
|
|
3784
3559
|
"typeArgs": [
|
|
3785
3560
|
{
|
|
3786
3561
|
"__schema": "TypeArraySchema",
|
|
@@ -3796,8 +3571,7 @@
|
|
|
3796
3571
|
"line": 13,
|
|
3797
3572
|
"character": 49
|
|
3798
3573
|
},
|
|
3799
|
-
"name": "MenuBarWidget"
|
|
3800
|
-
"internalFilePath": "compositions.tsx"
|
|
3574
|
+
"name": "MenuBarWidget"
|
|
3801
3575
|
}
|
|
3802
3576
|
}
|
|
3803
3577
|
]
|
|
@@ -3820,11 +3594,6 @@
|
|
|
3820
3594
|
"character": 30
|
|
3821
3595
|
},
|
|
3822
3596
|
"name": "SlotRegistry",
|
|
3823
|
-
"componentId": {
|
|
3824
|
-
"scope": "teambit.harmony",
|
|
3825
|
-
"name": "harmony",
|
|
3826
|
-
"version": "0.4.6"
|
|
3827
|
-
},
|
|
3828
3597
|
"typeArgs": [
|
|
3829
3598
|
{
|
|
3830
3599
|
"__schema": "TypeRefSchema",
|
|
@@ -3833,8 +3602,7 @@
|
|
|
3833
3602
|
"line": 14,
|
|
3834
3603
|
"character": 43
|
|
3835
3604
|
},
|
|
3836
|
-
"name": "ComponentType"
|
|
3837
|
-
"packageName": "react"
|
|
3605
|
+
"name": "ComponentType"
|
|
3838
3606
|
}
|
|
3839
3607
|
]
|
|
3840
3608
|
}
|
|
@@ -3947,8 +3715,7 @@
|
|
|
3947
3715
|
"line": 24,
|
|
3948
3716
|
"character": 43
|
|
3949
3717
|
},
|
|
3950
|
-
"name": "ComponentType"
|
|
3951
|
-
"packageName": "react"
|
|
3718
|
+
"name": "ComponentType"
|
|
3952
3719
|
},
|
|
3953
3720
|
"isOptional": false,
|
|
3954
3721
|
"isSpread": false
|
|
@@ -3997,8 +3764,7 @@
|
|
|
3997
3764
|
"line": 29,
|
|
3998
3765
|
"character": 33
|
|
3999
3766
|
},
|
|
4000
|
-
"name": "MenuBarWidget"
|
|
4001
|
-
"internalFilePath": "compositions.tsx"
|
|
3767
|
+
"name": "MenuBarWidget"
|
|
4002
3768
|
}
|
|
4003
3769
|
},
|
|
4004
3770
|
"isOptional": false,
|
|
@@ -4133,11 +3899,7 @@
|
|
|
4133
3899
|
"line": 49,
|
|
4134
3900
|
"character": 37
|
|
4135
3901
|
},
|
|
4136
|
-
"name": "ComponentUI"
|
|
4137
|
-
"componentId": {
|
|
4138
|
-
"scope": "teambit.component",
|
|
4139
|
-
"name": "component"
|
|
4140
|
-
}
|
|
3902
|
+
"name": "ComponentUI"
|
|
4141
3903
|
},
|
|
4142
3904
|
{
|
|
4143
3905
|
"__schema": "TypeRefSchema",
|
|
@@ -4146,11 +3908,7 @@
|
|
|
4146
3908
|
"line": 49,
|
|
4147
3909
|
"character": 50
|
|
4148
3910
|
},
|
|
4149
|
-
"name": "ComponentCompareUI"
|
|
4150
|
-
"componentId": {
|
|
4151
|
-
"scope": "teambit.component",
|
|
4152
|
-
"name": "component-compare"
|
|
4153
|
-
}
|
|
3911
|
+
"name": "ComponentCompareUI"
|
|
4154
3912
|
}
|
|
4155
3913
|
]
|
|
4156
3914
|
},
|
|
@@ -4447,8 +4205,7 @@
|
|
|
4447
4205
|
"line": 15,
|
|
4448
4206
|
"character": 17
|
|
4449
4207
|
},
|
|
4450
|
-
"name": "CompositionBrowserMetadata"
|
|
4451
|
-
"internalFilePath": "composition.ts"
|
|
4208
|
+
"name": "CompositionBrowserMetadata"
|
|
4452
4209
|
}
|
|
4453
4210
|
},
|
|
4454
4211
|
"isOptional": false
|
|
@@ -4757,8 +4514,7 @@
|
|
|
4757
4514
|
"line": 39,
|
|
4758
4515
|
"character": 12
|
|
4759
4516
|
},
|
|
4760
|
-
"name": "ReactNode"
|
|
4761
|
-
"packageName": "react"
|
|
4517
|
+
"name": "ReactNode"
|
|
4762
4518
|
},
|
|
4763
4519
|
"isOptional": false
|
|
4764
4520
|
}
|
|
@@ -4849,8 +4605,7 @@
|
|
|
4849
4605
|
"line": 43,
|
|
4850
4606
|
"character": 62
|
|
4851
4607
|
},
|
|
4852
|
-
"name": "CompositionsProp"
|
|
4853
|
-
"internalFilePath": "compositions.tsx"
|
|
4608
|
+
"name": "CompositionsProp"
|
|
4854
4609
|
},
|
|
4855
4610
|
"isOptional": false,
|
|
4856
4611
|
"objectBindingNodes": [
|
|
@@ -5038,8 +4793,7 @@
|
|
|
5038
4793
|
"line": 166,
|
|
5039
4794
|
"character": 5
|
|
5040
4795
|
},
|
|
5041
|
-
"name": "ComponentCompositionProps"
|
|
5042
|
-
"internalFilePath": "ui/composition-preview.tsx"
|
|
4796
|
+
"name": "ComponentCompositionProps"
|
|
5043
4797
|
}
|
|
5044
4798
|
]
|
|
5045
4799
|
}
|
|
@@ -5223,11 +4977,7 @@
|
|
|
5223
4977
|
"line": 20,
|
|
5224
4978
|
"character": 22
|
|
5225
4979
|
},
|
|
5226
|
-
"name": "PreviewPreview"
|
|
5227
|
-
"componentId": {
|
|
5228
|
-
"scope": "teambit.preview",
|
|
5229
|
-
"name": "preview"
|
|
5230
|
-
}
|
|
4980
|
+
"name": "PreviewPreview"
|
|
5231
4981
|
},
|
|
5232
4982
|
"isOptional": false,
|
|
5233
4983
|
"isSpread": false
|
|
@@ -5269,12 +5019,7 @@
|
|
|
5269
5019
|
"line": 23,
|
|
5270
5020
|
"character": 23
|
|
5271
5021
|
},
|
|
5272
|
-
"name": "ComponentID"
|
|
5273
|
-
"componentId": {
|
|
5274
|
-
"scope": "teambit.component",
|
|
5275
|
-
"name": "component-id",
|
|
5276
|
-
"version": "1.2.2"
|
|
5277
|
-
}
|
|
5022
|
+
"name": "ComponentID"
|
|
5278
5023
|
},
|
|
5279
5024
|
"isOptional": false,
|
|
5280
5025
|
"isSpread": false
|
|
@@ -5314,11 +5059,7 @@
|
|
|
5314
5059
|
"line": 23,
|
|
5315
5060
|
"character": 60
|
|
5316
5061
|
},
|
|
5317
|
-
"name": "PreviewModule"
|
|
5318
|
-
"componentId": {
|
|
5319
|
-
"scope": "teambit.preview",
|
|
5320
|
-
"name": "preview"
|
|
5321
|
-
}
|
|
5062
|
+
"name": "PreviewModule"
|
|
5322
5063
|
},
|
|
5323
5064
|
"isOptional": false,
|
|
5324
5065
|
"isSpread": false
|
|
@@ -5358,11 +5099,7 @@
|
|
|
5358
5099
|
"line": 23,
|
|
5359
5100
|
"character": 102
|
|
5360
5101
|
},
|
|
5361
|
-
"name": "RenderingContext"
|
|
5362
|
-
"componentId": {
|
|
5363
|
-
"scope": "teambit.preview",
|
|
5364
|
-
"name": "preview"
|
|
5365
|
-
}
|
|
5102
|
+
"name": "RenderingContext"
|
|
5366
5103
|
},
|
|
5367
5104
|
"isOptional": false,
|
|
5368
5105
|
"isSpread": false
|
|
@@ -5435,11 +5172,7 @@
|
|
|
5435
5172
|
"line": 42,
|
|
5436
5173
|
"character": 64
|
|
5437
5174
|
},
|
|
5438
|
-
"name": "PreviewModule"
|
|
5439
|
-
"componentId": {
|
|
5440
|
-
"scope": "teambit.preview",
|
|
5441
|
-
"name": "preview"
|
|
5442
|
-
}
|
|
5175
|
+
"name": "PreviewModule"
|
|
5443
5176
|
},
|
|
5444
5177
|
"isOptional": false,
|
|
5445
5178
|
"isSpread": false
|
|
@@ -5501,11 +5234,7 @@
|
|
|
5501
5234
|
"line": 50,
|
|
5502
5235
|
"character": 57
|
|
5503
5236
|
},
|
|
5504
|
-
"name": "PreviewModule"
|
|
5505
|
-
"componentId": {
|
|
5506
|
-
"scope": "teambit.preview",
|
|
5507
|
-
"name": "preview"
|
|
5508
|
-
}
|
|
5237
|
+
"name": "PreviewModule"
|
|
5509
5238
|
},
|
|
5510
5239
|
"isOptional": false,
|
|
5511
5240
|
"isSpread": false
|
|
@@ -5526,8 +5255,7 @@
|
|
|
5526
5255
|
"line": 50,
|
|
5527
5256
|
"character": 73
|
|
5528
5257
|
},
|
|
5529
|
-
"name": "CompositionBrowserMetadataObject"
|
|
5530
|
-
"internalFilePath": "composition.ts"
|
|
5258
|
+
"name": "CompositionBrowserMetadataObject"
|
|
5531
5259
|
},
|
|
5532
5260
|
{
|
|
5533
5261
|
"__schema": "KeywordTypeSchema",
|
|
@@ -5617,11 +5345,7 @@
|
|
|
5617
5345
|
"line": 85,
|
|
5618
5346
|
"character": 37
|
|
5619
5347
|
},
|
|
5620
|
-
"name": "PreviewPreview"
|
|
5621
|
-
"componentId": {
|
|
5622
|
-
"scope": "teambit.preview",
|
|
5623
|
-
"name": "preview"
|
|
5624
|
-
}
|
|
5348
|
+
"name": "PreviewPreview"
|
|
5625
5349
|
}
|
|
5626
5350
|
]
|
|
5627
5351
|
},
|
|
@@ -5734,12 +5458,7 @@
|
|
|
5734
5458
|
"line": 11,
|
|
5735
5459
|
"character": 5
|
|
5736
5460
|
},
|
|
5737
|
-
"name": "ComponentPreviewProps"
|
|
5738
|
-
"componentId": {
|
|
5739
|
-
"scope": "teambit.preview",
|
|
5740
|
-
"name": "ui/component-preview",
|
|
5741
|
-
"version": "1.0.16"
|
|
5742
|
-
}
|
|
5461
|
+
"name": "ComponentPreviewProps"
|
|
5743
5462
|
}
|
|
5744
5463
|
]
|
|
5745
5464
|
}
|
|
@@ -5768,8 +5487,7 @@
|
|
|
5768
5487
|
"line": 13,
|
|
5769
5488
|
"character": 93
|
|
5770
5489
|
},
|
|
5771
|
-
"name": "ComponentCompositionProps"
|
|
5772
|
-
"internalFilePath": "ui/composition-preview.tsx"
|
|
5490
|
+
"name": "ComponentCompositionProps"
|
|
5773
5491
|
},
|
|
5774
5492
|
"isOptional": false,
|
|
5775
5493
|
"objectBindingNodes": [
|
|
@@ -5842,7 +5560,7 @@
|
|
|
5842
5560
|
"componentId": {
|
|
5843
5561
|
"scope": "teambit.compositions",
|
|
5844
5562
|
"name": "compositions",
|
|
5845
|
-
"version": "1.0.
|
|
5563
|
+
"version": "1.0.470"
|
|
5846
5564
|
},
|
|
5847
5565
|
"taggedModuleExports": []
|
|
5848
5566
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.compositions_compositions@1.0.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.compositions_compositions@1.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.compositions_compositions@1.0.470/dist/compositions.composition.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.compositions_compositions@1.0.470/dist/compositions.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/compositions",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.470",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/compositions/compositions",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.compositions",
|
|
8
8
|
"name": "compositions",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.470"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"graphql-tag": "2.12.1",
|
|
@@ -34,25 +34,25 @@
|
|
|
34
34
|
"@teambit/compositions.ui.composition-compare": "0.0.255",
|
|
35
35
|
"@teambit/evangelist.elements.icon": "1.0.2",
|
|
36
36
|
"@teambit/ui-foundation.ui.menu-widget-icon": "0.0.502",
|
|
37
|
-
"@teambit/component": "1.0.
|
|
37
|
+
"@teambit/component": "1.0.470",
|
|
38
38
|
"@teambit/compositions.model.composition-id": "0.0.502",
|
|
39
|
-
"@teambit/graphql": "1.0.
|
|
40
|
-
"@teambit/cli": "0.0.
|
|
41
|
-
"@teambit/component.sources": "0.0.
|
|
42
|
-
"@teambit/dev-files": "1.0.
|
|
43
|
-
"@teambit/envs": "1.0.
|
|
44
|
-
"@teambit/preview": "1.0.
|
|
45
|
-
"@teambit/schema": "1.0.
|
|
46
|
-
"@teambit/scope": "1.0.
|
|
39
|
+
"@teambit/graphql": "1.0.470",
|
|
40
|
+
"@teambit/cli": "0.0.1047",
|
|
41
|
+
"@teambit/component.sources": "0.0.46",
|
|
42
|
+
"@teambit/dev-files": "1.0.470",
|
|
43
|
+
"@teambit/envs": "1.0.470",
|
|
44
|
+
"@teambit/preview": "1.0.470",
|
|
45
|
+
"@teambit/schema": "1.0.470",
|
|
46
|
+
"@teambit/scope": "1.0.470",
|
|
47
47
|
"@teambit/toolbox.path.match-patterns": "0.0.15",
|
|
48
|
-
"@teambit/workspace": "1.0.
|
|
48
|
+
"@teambit/workspace": "1.0.470",
|
|
49
49
|
"@teambit/design.ui.tooltip": "0.0.371",
|
|
50
50
|
"@teambit/docs.ui.queries.get-docs": "0.0.508",
|
|
51
|
-
"@teambit/panels": "0.0.
|
|
51
|
+
"@teambit/panels": "0.0.1049",
|
|
52
52
|
"@teambit/preview.ui.component-preview": "1.0.16",
|
|
53
53
|
"@teambit/ui-foundation.ui.buttons.collapser": "0.0.224",
|
|
54
|
-
"@teambit/component-compare": "1.0.
|
|
55
|
-
"@teambit/ui": "1.0.
|
|
54
|
+
"@teambit/component-compare": "1.0.470",
|
|
55
|
+
"@teambit/ui": "1.0.470"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/lodash": "4.14.165",
|