@teambit/compositions 1.0.513 → 1.0.515
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.515" 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={75:(e,o,t)=>{var n={id:"teambit.compositions/aspect-docs/compositions@0.0.171",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},97:(e,o,t)=>{Object.defineProperty(o,"s",{enumerable:!0,get:function(){return n.default}});var n=i(t(75));function i(e){return e&&e.__esModule?e:{default:e}}i.__bit_component={id:"teambit.compositions/aspect-docs/compositions@0.0.171",homepage:"https://bit.cloud/teambit/compositions/aspect-docs/compositions",exported:!0}},184:(e,o,t)=>{var n={id:"teambit.compositions/compositions@1.0.513",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(184),a=(t(594),t(16));const r=TeambitMdxUiMdxScopeContext;var p=t(97),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={898:(e,o,t)=>{var n={id:"teambit.compositions/aspect-docs/compositions@0.0.171",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},154:(e,o,t)=>{Object.defineProperty(o,"s",{enumerable:!0,get:function(){return n.default}});var n=i(t(898));function i(e){return e&&e.__esModule?e:{default:e}}i.__bit_component={id:"teambit.compositions/aspect-docs/compositions@0.0.171",homepage:"https://bit.cloud/teambit/compositions/aspect-docs/compositions",exported:!0}},83:(e,o,t)=>{var n={id:"teambit.compositions/compositions@1.0.515",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(83),a=(t(594),t(16));const r=TeambitMdxUiMdxScopeContext;var p=t(154),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,7 +160,11 @@
|
|
|
160
160
|
"line": 50,
|
|
161
161
|
"character": 22
|
|
162
162
|
},
|
|
163
|
-
"name": "PreviewMain"
|
|
163
|
+
"name": "PreviewMain",
|
|
164
|
+
"componentId": {
|
|
165
|
+
"scope": "teambit.preview",
|
|
166
|
+
"name": "preview"
|
|
167
|
+
}
|
|
164
168
|
},
|
|
165
169
|
"isOptional": false,
|
|
166
170
|
"isSpread": false
|
|
@@ -180,7 +184,11 @@
|
|
|
180
184
|
"line": 55,
|
|
181
185
|
"character": 24
|
|
182
186
|
},
|
|
183
|
-
"name": "Workspace"
|
|
187
|
+
"name": "Workspace",
|
|
188
|
+
"componentId": {
|
|
189
|
+
"scope": "teambit.workspace",
|
|
190
|
+
"name": "workspace"
|
|
191
|
+
}
|
|
184
192
|
},
|
|
185
193
|
"isOptional": false,
|
|
186
194
|
"isSpread": false
|
|
@@ -200,7 +208,11 @@
|
|
|
200
208
|
"line": 60,
|
|
201
209
|
"character": 21
|
|
202
210
|
},
|
|
203
|
-
"name": "SchemaMain"
|
|
211
|
+
"name": "SchemaMain",
|
|
212
|
+
"componentId": {
|
|
213
|
+
"scope": "teambit.semantics",
|
|
214
|
+
"name": "schema"
|
|
215
|
+
}
|
|
204
216
|
},
|
|
205
217
|
"isOptional": false,
|
|
206
218
|
"isSpread": false
|
|
@@ -220,7 +232,11 @@
|
|
|
220
232
|
"line": 62,
|
|
221
233
|
"character": 23
|
|
222
234
|
},
|
|
223
|
-
"name": "DevFilesMain"
|
|
235
|
+
"name": "DevFilesMain",
|
|
236
|
+
"componentId": {
|
|
237
|
+
"scope": "teambit.component",
|
|
238
|
+
"name": "dev-files"
|
|
239
|
+
}
|
|
224
240
|
},
|
|
225
241
|
"isOptional": false,
|
|
226
242
|
"isSpread": false
|
|
@@ -240,7 +256,11 @@
|
|
|
240
256
|
"line": 64,
|
|
241
257
|
"character": 19
|
|
242
258
|
},
|
|
243
|
-
"name": "EnvsMain"
|
|
259
|
+
"name": "EnvsMain",
|
|
260
|
+
"componentId": {
|
|
261
|
+
"scope": "teambit.envs",
|
|
262
|
+
"name": "envs"
|
|
263
|
+
}
|
|
244
264
|
},
|
|
245
265
|
"isOptional": false,
|
|
246
266
|
"isSpread": false
|
|
@@ -300,7 +320,11 @@
|
|
|
300
320
|
"line": 70,
|
|
301
321
|
"character": 31
|
|
302
322
|
},
|
|
303
|
-
"name": "Component"
|
|
323
|
+
"name": "Component",
|
|
324
|
+
"componentId": {
|
|
325
|
+
"scope": "teambit.component",
|
|
326
|
+
"name": "component"
|
|
327
|
+
}
|
|
304
328
|
}
|
|
305
329
|
},
|
|
306
330
|
"isOptional": false,
|
|
@@ -315,6 +339,10 @@
|
|
|
315
339
|
"character": 45
|
|
316
340
|
},
|
|
317
341
|
"name": "ComponentMap",
|
|
342
|
+
"componentId": {
|
|
343
|
+
"scope": "teambit.component",
|
|
344
|
+
"name": "component"
|
|
345
|
+
},
|
|
318
346
|
"typeArgs": [
|
|
319
347
|
{
|
|
320
348
|
"__schema": "TypeArraySchema",
|
|
@@ -330,7 +358,12 @@
|
|
|
330
358
|
"line": 70,
|
|
331
359
|
"character": 58
|
|
332
360
|
},
|
|
333
|
-
"name": "AbstractVinyl"
|
|
361
|
+
"name": "AbstractVinyl",
|
|
362
|
+
"componentId": {
|
|
363
|
+
"scope": "teambit.component",
|
|
364
|
+
"name": "sources",
|
|
365
|
+
"version": "0.0.72"
|
|
366
|
+
}
|
|
334
367
|
}
|
|
335
368
|
}
|
|
336
369
|
]
|
|
@@ -426,7 +459,11 @@
|
|
|
426
459
|
"line": 96,
|
|
427
460
|
"character": 30
|
|
428
461
|
},
|
|
429
|
-
"name": "IComponent"
|
|
462
|
+
"name": "IComponent",
|
|
463
|
+
"componentId": {
|
|
464
|
+
"scope": "teambit.component",
|
|
465
|
+
"name": "component"
|
|
466
|
+
}
|
|
430
467
|
},
|
|
431
468
|
"isOptional": false,
|
|
432
469
|
"isSpread": false
|
|
@@ -487,7 +524,11 @@
|
|
|
487
524
|
"line": 108,
|
|
488
525
|
"character": 31
|
|
489
526
|
},
|
|
490
|
-
"name": "Component"
|
|
527
|
+
"name": "Component",
|
|
528
|
+
"componentId": {
|
|
529
|
+
"scope": "teambit.component",
|
|
530
|
+
"name": "component"
|
|
531
|
+
}
|
|
491
532
|
},
|
|
492
533
|
"isOptional": false,
|
|
493
534
|
"isSpread": false
|
|
@@ -558,7 +599,11 @@
|
|
|
558
599
|
"line": 120,
|
|
559
600
|
"character": 38
|
|
560
601
|
},
|
|
561
|
-
"name": "Component"
|
|
602
|
+
"name": "Component",
|
|
603
|
+
"componentId": {
|
|
604
|
+
"scope": "teambit.component",
|
|
605
|
+
"name": "component"
|
|
606
|
+
}
|
|
562
607
|
},
|
|
563
608
|
"isOptional": false,
|
|
564
609
|
"isSpread": false
|
|
@@ -621,7 +666,11 @@
|
|
|
621
666
|
"line": 133,
|
|
622
667
|
"character": 36
|
|
623
668
|
},
|
|
624
|
-
"name": "Component"
|
|
669
|
+
"name": "Component",
|
|
670
|
+
"componentId": {
|
|
671
|
+
"scope": "teambit.component",
|
|
672
|
+
"name": "component"
|
|
673
|
+
}
|
|
625
674
|
},
|
|
626
675
|
"isOptional": false,
|
|
627
676
|
"isSpread": false
|
|
@@ -641,7 +690,12 @@
|
|
|
641
690
|
"line": 133,
|
|
642
691
|
"character": 58
|
|
643
692
|
},
|
|
644
|
-
"name": "ComponentLoadOptions"
|
|
693
|
+
"name": "ComponentLoadOptions",
|
|
694
|
+
"componentId": {
|
|
695
|
+
"scope": "teambit.legacy",
|
|
696
|
+
"name": "consumer-component",
|
|
697
|
+
"version": "0.0.21"
|
|
698
|
+
}
|
|
645
699
|
},
|
|
646
700
|
"isOptional": true,
|
|
647
701
|
"isSpread": false
|
|
@@ -671,7 +725,11 @@
|
|
|
671
725
|
"line": 133,
|
|
672
726
|
"character": 89
|
|
673
727
|
},
|
|
674
|
-
"name": "AspectData"
|
|
728
|
+
"name": "AspectData",
|
|
729
|
+
"componentId": {
|
|
730
|
+
"scope": "teambit.component",
|
|
731
|
+
"name": "component"
|
|
732
|
+
}
|
|
675
733
|
},
|
|
676
734
|
{
|
|
677
735
|
"__schema": "KeywordTypeSchema",
|
|
@@ -787,7 +845,11 @@
|
|
|
787
845
|
"line": 177,
|
|
788
846
|
"character": 7
|
|
789
847
|
},
|
|
790
|
-
"name": "PreviewMain"
|
|
848
|
+
"name": "PreviewMain",
|
|
849
|
+
"componentId": {
|
|
850
|
+
"scope": "teambit.preview",
|
|
851
|
+
"name": "preview"
|
|
852
|
+
}
|
|
791
853
|
},
|
|
792
854
|
{
|
|
793
855
|
"__schema": "TypeRefSchema",
|
|
@@ -796,7 +858,11 @@
|
|
|
796
858
|
"line": 178,
|
|
797
859
|
"character": 7
|
|
798
860
|
},
|
|
799
|
-
"name": "GraphqlMain"
|
|
861
|
+
"name": "GraphqlMain",
|
|
862
|
+
"componentId": {
|
|
863
|
+
"scope": "teambit.harmony",
|
|
864
|
+
"name": "graphql"
|
|
865
|
+
}
|
|
800
866
|
},
|
|
801
867
|
{
|
|
802
868
|
"__schema": "TypeRefSchema",
|
|
@@ -805,7 +871,11 @@
|
|
|
805
871
|
"line": 179,
|
|
806
872
|
"character": 7
|
|
807
873
|
},
|
|
808
|
-
"name": "Workspace"
|
|
874
|
+
"name": "Workspace",
|
|
875
|
+
"componentId": {
|
|
876
|
+
"scope": "teambit.workspace",
|
|
877
|
+
"name": "workspace"
|
|
878
|
+
}
|
|
809
879
|
},
|
|
810
880
|
{
|
|
811
881
|
"__schema": "TypeRefSchema",
|
|
@@ -814,7 +884,11 @@
|
|
|
814
884
|
"line": 180,
|
|
815
885
|
"character": 7
|
|
816
886
|
},
|
|
817
|
-
"name": "SchemaMain"
|
|
887
|
+
"name": "SchemaMain",
|
|
888
|
+
"componentId": {
|
|
889
|
+
"scope": "teambit.semantics",
|
|
890
|
+
"name": "schema"
|
|
891
|
+
}
|
|
818
892
|
},
|
|
819
893
|
{
|
|
820
894
|
"__schema": "TypeRefSchema",
|
|
@@ -823,7 +897,11 @@
|
|
|
823
897
|
"line": 181,
|
|
824
898
|
"character": 7
|
|
825
899
|
},
|
|
826
|
-
"name": "DevFilesMain"
|
|
900
|
+
"name": "DevFilesMain",
|
|
901
|
+
"componentId": {
|
|
902
|
+
"scope": "teambit.component",
|
|
903
|
+
"name": "dev-files"
|
|
904
|
+
}
|
|
827
905
|
},
|
|
828
906
|
{
|
|
829
907
|
"__schema": "TypeRefSchema",
|
|
@@ -832,7 +910,11 @@
|
|
|
832
910
|
"line": 182,
|
|
833
911
|
"character": 7
|
|
834
912
|
},
|
|
835
|
-
"name": "EnvsMain"
|
|
913
|
+
"name": "EnvsMain",
|
|
914
|
+
"componentId": {
|
|
915
|
+
"scope": "teambit.envs",
|
|
916
|
+
"name": "envs"
|
|
917
|
+
}
|
|
836
918
|
},
|
|
837
919
|
{
|
|
838
920
|
"__schema": "TypeRefSchema",
|
|
@@ -841,7 +923,11 @@
|
|
|
841
923
|
"line": 183,
|
|
842
924
|
"character": 7
|
|
843
925
|
},
|
|
844
|
-
"name": "ScopeMain"
|
|
926
|
+
"name": "ScopeMain",
|
|
927
|
+
"componentId": {
|
|
928
|
+
"scope": "teambit.scope",
|
|
929
|
+
"name": "scope"
|
|
930
|
+
}
|
|
845
931
|
}
|
|
846
932
|
]
|
|
847
933
|
},
|
|
@@ -863,7 +949,8 @@
|
|
|
863
949
|
"line": 185,
|
|
864
950
|
"character": 13
|
|
865
951
|
},
|
|
866
|
-
"name": "CompositionsConfig"
|
|
952
|
+
"name": "CompositionsConfig",
|
|
953
|
+
"internalFilePath": "compositions.main.runtime.ts"
|
|
867
954
|
},
|
|
868
955
|
"isOptional": false,
|
|
869
956
|
"isSpread": false
|
|
@@ -1005,7 +1092,8 @@
|
|
|
1005
1092
|
"line": 24,
|
|
1006
1093
|
"character": 43
|
|
1007
1094
|
},
|
|
1008
|
-
"name": "ComponentType"
|
|
1095
|
+
"name": "ComponentType",
|
|
1096
|
+
"packageName": "react"
|
|
1009
1097
|
},
|
|
1010
1098
|
"isOptional": false,
|
|
1011
1099
|
"isSpread": false
|
|
@@ -1054,7 +1142,8 @@
|
|
|
1054
1142
|
"line": 29,
|
|
1055
1143
|
"character": 33
|
|
1056
1144
|
},
|
|
1057
|
-
"name": "MenuBarWidget"
|
|
1145
|
+
"name": "MenuBarWidget",
|
|
1146
|
+
"internalFilePath": "compositions.tsx"
|
|
1058
1147
|
}
|
|
1059
1148
|
},
|
|
1060
1149
|
"isOptional": false,
|
|
@@ -1189,7 +1278,11 @@
|
|
|
1189
1278
|
"line": 49,
|
|
1190
1279
|
"character": 37
|
|
1191
1280
|
},
|
|
1192
|
-
"name": "ComponentUI"
|
|
1281
|
+
"name": "ComponentUI",
|
|
1282
|
+
"componentId": {
|
|
1283
|
+
"scope": "teambit.component",
|
|
1284
|
+
"name": "component"
|
|
1285
|
+
}
|
|
1193
1286
|
},
|
|
1194
1287
|
{
|
|
1195
1288
|
"__schema": "TypeRefSchema",
|
|
@@ -1198,7 +1291,11 @@
|
|
|
1198
1291
|
"line": 49,
|
|
1199
1292
|
"character": 50
|
|
1200
1293
|
},
|
|
1201
|
-
"name": "ComponentCompareUI"
|
|
1294
|
+
"name": "ComponentCompareUI",
|
|
1295
|
+
"componentId": {
|
|
1296
|
+
"scope": "teambit.component",
|
|
1297
|
+
"name": "component-compare"
|
|
1298
|
+
}
|
|
1202
1299
|
}
|
|
1203
1300
|
]
|
|
1204
1301
|
},
|
|
@@ -1310,6 +1407,11 @@
|
|
|
1310
1407
|
"character": 36
|
|
1311
1408
|
},
|
|
1312
1409
|
"name": "SlotRegistry",
|
|
1410
|
+
"componentId": {
|
|
1411
|
+
"scope": "teambit.harmony",
|
|
1412
|
+
"name": "harmony",
|
|
1413
|
+
"version": "0.4.6"
|
|
1414
|
+
},
|
|
1313
1415
|
"typeArgs": [
|
|
1314
1416
|
{
|
|
1315
1417
|
"__schema": "TypeArraySchema",
|
|
@@ -1325,7 +1427,8 @@
|
|
|
1325
1427
|
"line": 13,
|
|
1326
1428
|
"character": 49
|
|
1327
1429
|
},
|
|
1328
|
-
"name": "MenuBarWidget"
|
|
1430
|
+
"name": "MenuBarWidget",
|
|
1431
|
+
"internalFilePath": "compositions.tsx"
|
|
1329
1432
|
}
|
|
1330
1433
|
}
|
|
1331
1434
|
]
|
|
@@ -1358,6 +1461,11 @@
|
|
|
1358
1461
|
"character": 30
|
|
1359
1462
|
},
|
|
1360
1463
|
"name": "SlotRegistry",
|
|
1464
|
+
"componentId": {
|
|
1465
|
+
"scope": "teambit.harmony",
|
|
1466
|
+
"name": "harmony",
|
|
1467
|
+
"version": "0.4.6"
|
|
1468
|
+
},
|
|
1361
1469
|
"typeArgs": [
|
|
1362
1470
|
{
|
|
1363
1471
|
"__schema": "TypeRefSchema",
|
|
@@ -1366,7 +1474,8 @@
|
|
|
1366
1474
|
"line": 14,
|
|
1367
1475
|
"character": 43
|
|
1368
1476
|
},
|
|
1369
|
-
"name": "ComponentType"
|
|
1477
|
+
"name": "ComponentType",
|
|
1478
|
+
"packageName": "react"
|
|
1370
1479
|
}
|
|
1371
1480
|
]
|
|
1372
1481
|
}
|
|
@@ -1844,7 +1953,8 @@
|
|
|
1844
1953
|
"line": 166,
|
|
1845
1954
|
"character": 5
|
|
1846
1955
|
},
|
|
1847
|
-
"name": "ComponentCompositionProps"
|
|
1956
|
+
"name": "ComponentCompositionProps",
|
|
1957
|
+
"internalFilePath": "ui/composition-preview.tsx"
|
|
1848
1958
|
}
|
|
1849
1959
|
]
|
|
1850
1960
|
}
|
|
@@ -2004,7 +2114,11 @@
|
|
|
2004
2114
|
"line": 20,
|
|
2005
2115
|
"character": 22
|
|
2006
2116
|
},
|
|
2007
|
-
"name": "PreviewPreview"
|
|
2117
|
+
"name": "PreviewPreview",
|
|
2118
|
+
"componentId": {
|
|
2119
|
+
"scope": "teambit.preview",
|
|
2120
|
+
"name": "preview"
|
|
2121
|
+
}
|
|
2008
2122
|
},
|
|
2009
2123
|
"isOptional": false,
|
|
2010
2124
|
"isSpread": false
|
|
@@ -2046,7 +2160,12 @@
|
|
|
2046
2160
|
"line": 23,
|
|
2047
2161
|
"character": 23
|
|
2048
2162
|
},
|
|
2049
|
-
"name": "ComponentID"
|
|
2163
|
+
"name": "ComponentID",
|
|
2164
|
+
"componentId": {
|
|
2165
|
+
"scope": "teambit.component",
|
|
2166
|
+
"name": "component-id",
|
|
2167
|
+
"version": "1.2.2"
|
|
2168
|
+
}
|
|
2050
2169
|
},
|
|
2051
2170
|
"isOptional": false,
|
|
2052
2171
|
"isSpread": false
|
|
@@ -2086,7 +2205,11 @@
|
|
|
2086
2205
|
"line": 23,
|
|
2087
2206
|
"character": 60
|
|
2088
2207
|
},
|
|
2089
|
-
"name": "PreviewModule"
|
|
2208
|
+
"name": "PreviewModule",
|
|
2209
|
+
"componentId": {
|
|
2210
|
+
"scope": "teambit.preview",
|
|
2211
|
+
"name": "preview"
|
|
2212
|
+
}
|
|
2090
2213
|
},
|
|
2091
2214
|
"isOptional": false,
|
|
2092
2215
|
"isSpread": false
|
|
@@ -2126,7 +2249,11 @@
|
|
|
2126
2249
|
"line": 23,
|
|
2127
2250
|
"character": 102
|
|
2128
2251
|
},
|
|
2129
|
-
"name": "RenderingContext"
|
|
2252
|
+
"name": "RenderingContext",
|
|
2253
|
+
"componentId": {
|
|
2254
|
+
"scope": "teambit.preview",
|
|
2255
|
+
"name": "preview"
|
|
2256
|
+
}
|
|
2130
2257
|
},
|
|
2131
2258
|
"isOptional": false,
|
|
2132
2259
|
"isSpread": false
|
|
@@ -2199,7 +2326,11 @@
|
|
|
2199
2326
|
"line": 42,
|
|
2200
2327
|
"character": 64
|
|
2201
2328
|
},
|
|
2202
|
-
"name": "PreviewModule"
|
|
2329
|
+
"name": "PreviewModule",
|
|
2330
|
+
"componentId": {
|
|
2331
|
+
"scope": "teambit.preview",
|
|
2332
|
+
"name": "preview"
|
|
2333
|
+
}
|
|
2203
2334
|
},
|
|
2204
2335
|
"isOptional": false,
|
|
2205
2336
|
"isSpread": false
|
|
@@ -2261,7 +2392,11 @@
|
|
|
2261
2392
|
"line": 50,
|
|
2262
2393
|
"character": 57
|
|
2263
2394
|
},
|
|
2264
|
-
"name": "PreviewModule"
|
|
2395
|
+
"name": "PreviewModule",
|
|
2396
|
+
"componentId": {
|
|
2397
|
+
"scope": "teambit.preview",
|
|
2398
|
+
"name": "preview"
|
|
2399
|
+
}
|
|
2265
2400
|
},
|
|
2266
2401
|
"isOptional": false,
|
|
2267
2402
|
"isSpread": false
|
|
@@ -2282,7 +2417,8 @@
|
|
|
2282
2417
|
"line": 50,
|
|
2283
2418
|
"character": 73
|
|
2284
2419
|
},
|
|
2285
|
-
"name": "CompositionBrowserMetadataObject"
|
|
2420
|
+
"name": "CompositionBrowserMetadataObject",
|
|
2421
|
+
"internalFilePath": "composition.ts"
|
|
2286
2422
|
},
|
|
2287
2423
|
{
|
|
2288
2424
|
"__schema": "KeywordTypeSchema",
|
|
@@ -2372,7 +2508,11 @@
|
|
|
2372
2508
|
"line": 85,
|
|
2373
2509
|
"character": 37
|
|
2374
2510
|
},
|
|
2375
|
-
"name": "PreviewPreview"
|
|
2511
|
+
"name": "PreviewPreview",
|
|
2512
|
+
"componentId": {
|
|
2513
|
+
"scope": "teambit.preview",
|
|
2514
|
+
"name": "preview"
|
|
2515
|
+
}
|
|
2376
2516
|
}
|
|
2377
2517
|
]
|
|
2378
2518
|
},
|
|
@@ -2432,7 +2572,8 @@
|
|
|
2432
2572
|
"line": 13,
|
|
2433
2573
|
"character": 93
|
|
2434
2574
|
},
|
|
2435
|
-
"name": "ComponentCompositionProps"
|
|
2575
|
+
"name": "ComponentCompositionProps",
|
|
2576
|
+
"internalFilePath": "ui/composition-preview.tsx"
|
|
2436
2577
|
},
|
|
2437
2578
|
"isOptional": false,
|
|
2438
2579
|
"objectBindingNodes": [
|
|
@@ -2790,7 +2931,11 @@
|
|
|
2790
2931
|
"line": 50,
|
|
2791
2932
|
"character": 22
|
|
2792
2933
|
},
|
|
2793
|
-
"name": "PreviewMain"
|
|
2934
|
+
"name": "PreviewMain",
|
|
2935
|
+
"componentId": {
|
|
2936
|
+
"scope": "teambit.preview",
|
|
2937
|
+
"name": "preview"
|
|
2938
|
+
}
|
|
2794
2939
|
},
|
|
2795
2940
|
"isOptional": false,
|
|
2796
2941
|
"isSpread": false
|
|
@@ -2810,7 +2955,11 @@
|
|
|
2810
2955
|
"line": 55,
|
|
2811
2956
|
"character": 24
|
|
2812
2957
|
},
|
|
2813
|
-
"name": "Workspace"
|
|
2958
|
+
"name": "Workspace",
|
|
2959
|
+
"componentId": {
|
|
2960
|
+
"scope": "teambit.workspace",
|
|
2961
|
+
"name": "workspace"
|
|
2962
|
+
}
|
|
2814
2963
|
},
|
|
2815
2964
|
"isOptional": false,
|
|
2816
2965
|
"isSpread": false
|
|
@@ -2830,7 +2979,11 @@
|
|
|
2830
2979
|
"line": 60,
|
|
2831
2980
|
"character": 21
|
|
2832
2981
|
},
|
|
2833
|
-
"name": "SchemaMain"
|
|
2982
|
+
"name": "SchemaMain",
|
|
2983
|
+
"componentId": {
|
|
2984
|
+
"scope": "teambit.semantics",
|
|
2985
|
+
"name": "schema"
|
|
2986
|
+
}
|
|
2834
2987
|
},
|
|
2835
2988
|
"isOptional": false,
|
|
2836
2989
|
"isSpread": false
|
|
@@ -2850,7 +3003,11 @@
|
|
|
2850
3003
|
"line": 62,
|
|
2851
3004
|
"character": 23
|
|
2852
3005
|
},
|
|
2853
|
-
"name": "DevFilesMain"
|
|
3006
|
+
"name": "DevFilesMain",
|
|
3007
|
+
"componentId": {
|
|
3008
|
+
"scope": "teambit.component",
|
|
3009
|
+
"name": "dev-files"
|
|
3010
|
+
}
|
|
2854
3011
|
},
|
|
2855
3012
|
"isOptional": false,
|
|
2856
3013
|
"isSpread": false
|
|
@@ -2870,7 +3027,11 @@
|
|
|
2870
3027
|
"line": 64,
|
|
2871
3028
|
"character": 19
|
|
2872
3029
|
},
|
|
2873
|
-
"name": "EnvsMain"
|
|
3030
|
+
"name": "EnvsMain",
|
|
3031
|
+
"componentId": {
|
|
3032
|
+
"scope": "teambit.envs",
|
|
3033
|
+
"name": "envs"
|
|
3034
|
+
}
|
|
2874
3035
|
},
|
|
2875
3036
|
"isOptional": false,
|
|
2876
3037
|
"isSpread": false
|
|
@@ -2930,7 +3091,11 @@
|
|
|
2930
3091
|
"line": 70,
|
|
2931
3092
|
"character": 31
|
|
2932
3093
|
},
|
|
2933
|
-
"name": "Component"
|
|
3094
|
+
"name": "Component",
|
|
3095
|
+
"componentId": {
|
|
3096
|
+
"scope": "teambit.component",
|
|
3097
|
+
"name": "component"
|
|
3098
|
+
}
|
|
2934
3099
|
}
|
|
2935
3100
|
},
|
|
2936
3101
|
"isOptional": false,
|
|
@@ -2945,6 +3110,10 @@
|
|
|
2945
3110
|
"character": 45
|
|
2946
3111
|
},
|
|
2947
3112
|
"name": "ComponentMap",
|
|
3113
|
+
"componentId": {
|
|
3114
|
+
"scope": "teambit.component",
|
|
3115
|
+
"name": "component"
|
|
3116
|
+
},
|
|
2948
3117
|
"typeArgs": [
|
|
2949
3118
|
{
|
|
2950
3119
|
"__schema": "TypeArraySchema",
|
|
@@ -2960,7 +3129,12 @@
|
|
|
2960
3129
|
"line": 70,
|
|
2961
3130
|
"character": 58
|
|
2962
3131
|
},
|
|
2963
|
-
"name": "AbstractVinyl"
|
|
3132
|
+
"name": "AbstractVinyl",
|
|
3133
|
+
"componentId": {
|
|
3134
|
+
"scope": "teambit.component",
|
|
3135
|
+
"name": "sources",
|
|
3136
|
+
"version": "0.0.72"
|
|
3137
|
+
}
|
|
2964
3138
|
}
|
|
2965
3139
|
}
|
|
2966
3140
|
]
|
|
@@ -3056,7 +3230,11 @@
|
|
|
3056
3230
|
"line": 96,
|
|
3057
3231
|
"character": 30
|
|
3058
3232
|
},
|
|
3059
|
-
"name": "IComponent"
|
|
3233
|
+
"name": "IComponent",
|
|
3234
|
+
"componentId": {
|
|
3235
|
+
"scope": "teambit.component",
|
|
3236
|
+
"name": "component"
|
|
3237
|
+
}
|
|
3060
3238
|
},
|
|
3061
3239
|
"isOptional": false,
|
|
3062
3240
|
"isSpread": false
|
|
@@ -3117,7 +3295,11 @@
|
|
|
3117
3295
|
"line": 108,
|
|
3118
3296
|
"character": 31
|
|
3119
3297
|
},
|
|
3120
|
-
"name": "Component"
|
|
3298
|
+
"name": "Component",
|
|
3299
|
+
"componentId": {
|
|
3300
|
+
"scope": "teambit.component",
|
|
3301
|
+
"name": "component"
|
|
3302
|
+
}
|
|
3121
3303
|
},
|
|
3122
3304
|
"isOptional": false,
|
|
3123
3305
|
"isSpread": false
|
|
@@ -3188,7 +3370,11 @@
|
|
|
3188
3370
|
"line": 120,
|
|
3189
3371
|
"character": 38
|
|
3190
3372
|
},
|
|
3191
|
-
"name": "Component"
|
|
3373
|
+
"name": "Component",
|
|
3374
|
+
"componentId": {
|
|
3375
|
+
"scope": "teambit.component",
|
|
3376
|
+
"name": "component"
|
|
3377
|
+
}
|
|
3192
3378
|
},
|
|
3193
3379
|
"isOptional": false,
|
|
3194
3380
|
"isSpread": false
|
|
@@ -3251,7 +3437,11 @@
|
|
|
3251
3437
|
"line": 133,
|
|
3252
3438
|
"character": 36
|
|
3253
3439
|
},
|
|
3254
|
-
"name": "Component"
|
|
3440
|
+
"name": "Component",
|
|
3441
|
+
"componentId": {
|
|
3442
|
+
"scope": "teambit.component",
|
|
3443
|
+
"name": "component"
|
|
3444
|
+
}
|
|
3255
3445
|
},
|
|
3256
3446
|
"isOptional": false,
|
|
3257
3447
|
"isSpread": false
|
|
@@ -3271,7 +3461,12 @@
|
|
|
3271
3461
|
"line": 133,
|
|
3272
3462
|
"character": 58
|
|
3273
3463
|
},
|
|
3274
|
-
"name": "ComponentLoadOptions"
|
|
3464
|
+
"name": "ComponentLoadOptions",
|
|
3465
|
+
"componentId": {
|
|
3466
|
+
"scope": "teambit.legacy",
|
|
3467
|
+
"name": "consumer-component",
|
|
3468
|
+
"version": "0.0.21"
|
|
3469
|
+
}
|
|
3275
3470
|
},
|
|
3276
3471
|
"isOptional": true,
|
|
3277
3472
|
"isSpread": false
|
|
@@ -3301,7 +3496,11 @@
|
|
|
3301
3496
|
"line": 133,
|
|
3302
3497
|
"character": 89
|
|
3303
3498
|
},
|
|
3304
|
-
"name": "AspectData"
|
|
3499
|
+
"name": "AspectData",
|
|
3500
|
+
"componentId": {
|
|
3501
|
+
"scope": "teambit.component",
|
|
3502
|
+
"name": "component"
|
|
3503
|
+
}
|
|
3305
3504
|
},
|
|
3306
3505
|
{
|
|
3307
3506
|
"__schema": "KeywordTypeSchema",
|
|
@@ -3417,7 +3616,11 @@
|
|
|
3417
3616
|
"line": 177,
|
|
3418
3617
|
"character": 7
|
|
3419
3618
|
},
|
|
3420
|
-
"name": "PreviewMain"
|
|
3619
|
+
"name": "PreviewMain",
|
|
3620
|
+
"componentId": {
|
|
3621
|
+
"scope": "teambit.preview",
|
|
3622
|
+
"name": "preview"
|
|
3623
|
+
}
|
|
3421
3624
|
},
|
|
3422
3625
|
{
|
|
3423
3626
|
"__schema": "TypeRefSchema",
|
|
@@ -3426,7 +3629,11 @@
|
|
|
3426
3629
|
"line": 178,
|
|
3427
3630
|
"character": 7
|
|
3428
3631
|
},
|
|
3429
|
-
"name": "GraphqlMain"
|
|
3632
|
+
"name": "GraphqlMain",
|
|
3633
|
+
"componentId": {
|
|
3634
|
+
"scope": "teambit.harmony",
|
|
3635
|
+
"name": "graphql"
|
|
3636
|
+
}
|
|
3430
3637
|
},
|
|
3431
3638
|
{
|
|
3432
3639
|
"__schema": "TypeRefSchema",
|
|
@@ -3435,7 +3642,11 @@
|
|
|
3435
3642
|
"line": 179,
|
|
3436
3643
|
"character": 7
|
|
3437
3644
|
},
|
|
3438
|
-
"name": "Workspace"
|
|
3645
|
+
"name": "Workspace",
|
|
3646
|
+
"componentId": {
|
|
3647
|
+
"scope": "teambit.workspace",
|
|
3648
|
+
"name": "workspace"
|
|
3649
|
+
}
|
|
3439
3650
|
},
|
|
3440
3651
|
{
|
|
3441
3652
|
"__schema": "TypeRefSchema",
|
|
@@ -3444,7 +3655,11 @@
|
|
|
3444
3655
|
"line": 180,
|
|
3445
3656
|
"character": 7
|
|
3446
3657
|
},
|
|
3447
|
-
"name": "SchemaMain"
|
|
3658
|
+
"name": "SchemaMain",
|
|
3659
|
+
"componentId": {
|
|
3660
|
+
"scope": "teambit.semantics",
|
|
3661
|
+
"name": "schema"
|
|
3662
|
+
}
|
|
3448
3663
|
},
|
|
3449
3664
|
{
|
|
3450
3665
|
"__schema": "TypeRefSchema",
|
|
@@ -3453,7 +3668,11 @@
|
|
|
3453
3668
|
"line": 181,
|
|
3454
3669
|
"character": 7
|
|
3455
3670
|
},
|
|
3456
|
-
"name": "DevFilesMain"
|
|
3671
|
+
"name": "DevFilesMain",
|
|
3672
|
+
"componentId": {
|
|
3673
|
+
"scope": "teambit.component",
|
|
3674
|
+
"name": "dev-files"
|
|
3675
|
+
}
|
|
3457
3676
|
},
|
|
3458
3677
|
{
|
|
3459
3678
|
"__schema": "TypeRefSchema",
|
|
@@ -3462,7 +3681,11 @@
|
|
|
3462
3681
|
"line": 182,
|
|
3463
3682
|
"character": 7
|
|
3464
3683
|
},
|
|
3465
|
-
"name": "EnvsMain"
|
|
3684
|
+
"name": "EnvsMain",
|
|
3685
|
+
"componentId": {
|
|
3686
|
+
"scope": "teambit.envs",
|
|
3687
|
+
"name": "envs"
|
|
3688
|
+
}
|
|
3466
3689
|
},
|
|
3467
3690
|
{
|
|
3468
3691
|
"__schema": "TypeRefSchema",
|
|
@@ -3471,7 +3694,11 @@
|
|
|
3471
3694
|
"line": 183,
|
|
3472
3695
|
"character": 7
|
|
3473
3696
|
},
|
|
3474
|
-
"name": "ScopeMain"
|
|
3697
|
+
"name": "ScopeMain",
|
|
3698
|
+
"componentId": {
|
|
3699
|
+
"scope": "teambit.scope",
|
|
3700
|
+
"name": "scope"
|
|
3701
|
+
}
|
|
3475
3702
|
}
|
|
3476
3703
|
]
|
|
3477
3704
|
},
|
|
@@ -3493,7 +3720,8 @@
|
|
|
3493
3720
|
"line": 185,
|
|
3494
3721
|
"character": 13
|
|
3495
3722
|
},
|
|
3496
|
-
"name": "CompositionsConfig"
|
|
3723
|
+
"name": "CompositionsConfig",
|
|
3724
|
+
"internalFilePath": "compositions.main.runtime.ts"
|
|
3497
3725
|
},
|
|
3498
3726
|
"isOptional": false,
|
|
3499
3727
|
"isSpread": false
|
|
@@ -3556,6 +3784,11 @@
|
|
|
3556
3784
|
"character": 36
|
|
3557
3785
|
},
|
|
3558
3786
|
"name": "SlotRegistry",
|
|
3787
|
+
"componentId": {
|
|
3788
|
+
"scope": "teambit.harmony",
|
|
3789
|
+
"name": "harmony",
|
|
3790
|
+
"version": "0.4.6"
|
|
3791
|
+
},
|
|
3559
3792
|
"typeArgs": [
|
|
3560
3793
|
{
|
|
3561
3794
|
"__schema": "TypeArraySchema",
|
|
@@ -3571,7 +3804,8 @@
|
|
|
3571
3804
|
"line": 13,
|
|
3572
3805
|
"character": 49
|
|
3573
3806
|
},
|
|
3574
|
-
"name": "MenuBarWidget"
|
|
3807
|
+
"name": "MenuBarWidget",
|
|
3808
|
+
"internalFilePath": "compositions.tsx"
|
|
3575
3809
|
}
|
|
3576
3810
|
}
|
|
3577
3811
|
]
|
|
@@ -3594,6 +3828,11 @@
|
|
|
3594
3828
|
"character": 30
|
|
3595
3829
|
},
|
|
3596
3830
|
"name": "SlotRegistry",
|
|
3831
|
+
"componentId": {
|
|
3832
|
+
"scope": "teambit.harmony",
|
|
3833
|
+
"name": "harmony",
|
|
3834
|
+
"version": "0.4.6"
|
|
3835
|
+
},
|
|
3597
3836
|
"typeArgs": [
|
|
3598
3837
|
{
|
|
3599
3838
|
"__schema": "TypeRefSchema",
|
|
@@ -3602,7 +3841,8 @@
|
|
|
3602
3841
|
"line": 14,
|
|
3603
3842
|
"character": 43
|
|
3604
3843
|
},
|
|
3605
|
-
"name": "ComponentType"
|
|
3844
|
+
"name": "ComponentType",
|
|
3845
|
+
"packageName": "react"
|
|
3606
3846
|
}
|
|
3607
3847
|
]
|
|
3608
3848
|
}
|
|
@@ -3715,7 +3955,8 @@
|
|
|
3715
3955
|
"line": 24,
|
|
3716
3956
|
"character": 43
|
|
3717
3957
|
},
|
|
3718
|
-
"name": "ComponentType"
|
|
3958
|
+
"name": "ComponentType",
|
|
3959
|
+
"packageName": "react"
|
|
3719
3960
|
},
|
|
3720
3961
|
"isOptional": false,
|
|
3721
3962
|
"isSpread": false
|
|
@@ -3764,7 +4005,8 @@
|
|
|
3764
4005
|
"line": 29,
|
|
3765
4006
|
"character": 33
|
|
3766
4007
|
},
|
|
3767
|
-
"name": "MenuBarWidget"
|
|
4008
|
+
"name": "MenuBarWidget",
|
|
4009
|
+
"internalFilePath": "compositions.tsx"
|
|
3768
4010
|
}
|
|
3769
4011
|
},
|
|
3770
4012
|
"isOptional": false,
|
|
@@ -3899,7 +4141,11 @@
|
|
|
3899
4141
|
"line": 49,
|
|
3900
4142
|
"character": 37
|
|
3901
4143
|
},
|
|
3902
|
-
"name": "ComponentUI"
|
|
4144
|
+
"name": "ComponentUI",
|
|
4145
|
+
"componentId": {
|
|
4146
|
+
"scope": "teambit.component",
|
|
4147
|
+
"name": "component"
|
|
4148
|
+
}
|
|
3903
4149
|
},
|
|
3904
4150
|
{
|
|
3905
4151
|
"__schema": "TypeRefSchema",
|
|
@@ -3908,7 +4154,11 @@
|
|
|
3908
4154
|
"line": 49,
|
|
3909
4155
|
"character": 50
|
|
3910
4156
|
},
|
|
3911
|
-
"name": "ComponentCompareUI"
|
|
4157
|
+
"name": "ComponentCompareUI",
|
|
4158
|
+
"componentId": {
|
|
4159
|
+
"scope": "teambit.component",
|
|
4160
|
+
"name": "component-compare"
|
|
4161
|
+
}
|
|
3912
4162
|
}
|
|
3913
4163
|
]
|
|
3914
4164
|
},
|
|
@@ -4205,7 +4455,8 @@
|
|
|
4205
4455
|
"line": 15,
|
|
4206
4456
|
"character": 17
|
|
4207
4457
|
},
|
|
4208
|
-
"name": "CompositionBrowserMetadata"
|
|
4458
|
+
"name": "CompositionBrowserMetadata",
|
|
4459
|
+
"internalFilePath": "composition.ts"
|
|
4209
4460
|
}
|
|
4210
4461
|
},
|
|
4211
4462
|
"isOptional": false
|
|
@@ -4514,7 +4765,8 @@
|
|
|
4514
4765
|
"line": 39,
|
|
4515
4766
|
"character": 12
|
|
4516
4767
|
},
|
|
4517
|
-
"name": "ReactNode"
|
|
4768
|
+
"name": "ReactNode",
|
|
4769
|
+
"packageName": "react"
|
|
4518
4770
|
},
|
|
4519
4771
|
"isOptional": false
|
|
4520
4772
|
}
|
|
@@ -4605,7 +4857,8 @@
|
|
|
4605
4857
|
"line": 43,
|
|
4606
4858
|
"character": 62
|
|
4607
4859
|
},
|
|
4608
|
-
"name": "CompositionsProp"
|
|
4860
|
+
"name": "CompositionsProp",
|
|
4861
|
+
"internalFilePath": "compositions.tsx"
|
|
4609
4862
|
},
|
|
4610
4863
|
"isOptional": false,
|
|
4611
4864
|
"objectBindingNodes": [
|
|
@@ -4793,7 +5046,8 @@
|
|
|
4793
5046
|
"line": 166,
|
|
4794
5047
|
"character": 5
|
|
4795
5048
|
},
|
|
4796
|
-
"name": "ComponentCompositionProps"
|
|
5049
|
+
"name": "ComponentCompositionProps",
|
|
5050
|
+
"internalFilePath": "ui/composition-preview.tsx"
|
|
4797
5051
|
}
|
|
4798
5052
|
]
|
|
4799
5053
|
}
|
|
@@ -4977,7 +5231,11 @@
|
|
|
4977
5231
|
"line": 20,
|
|
4978
5232
|
"character": 22
|
|
4979
5233
|
},
|
|
4980
|
-
"name": "PreviewPreview"
|
|
5234
|
+
"name": "PreviewPreview",
|
|
5235
|
+
"componentId": {
|
|
5236
|
+
"scope": "teambit.preview",
|
|
5237
|
+
"name": "preview"
|
|
5238
|
+
}
|
|
4981
5239
|
},
|
|
4982
5240
|
"isOptional": false,
|
|
4983
5241
|
"isSpread": false
|
|
@@ -5019,7 +5277,12 @@
|
|
|
5019
5277
|
"line": 23,
|
|
5020
5278
|
"character": 23
|
|
5021
5279
|
},
|
|
5022
|
-
"name": "ComponentID"
|
|
5280
|
+
"name": "ComponentID",
|
|
5281
|
+
"componentId": {
|
|
5282
|
+
"scope": "teambit.component",
|
|
5283
|
+
"name": "component-id",
|
|
5284
|
+
"version": "1.2.2"
|
|
5285
|
+
}
|
|
5023
5286
|
},
|
|
5024
5287
|
"isOptional": false,
|
|
5025
5288
|
"isSpread": false
|
|
@@ -5059,7 +5322,11 @@
|
|
|
5059
5322
|
"line": 23,
|
|
5060
5323
|
"character": 60
|
|
5061
5324
|
},
|
|
5062
|
-
"name": "PreviewModule"
|
|
5325
|
+
"name": "PreviewModule",
|
|
5326
|
+
"componentId": {
|
|
5327
|
+
"scope": "teambit.preview",
|
|
5328
|
+
"name": "preview"
|
|
5329
|
+
}
|
|
5063
5330
|
},
|
|
5064
5331
|
"isOptional": false,
|
|
5065
5332
|
"isSpread": false
|
|
@@ -5099,7 +5366,11 @@
|
|
|
5099
5366
|
"line": 23,
|
|
5100
5367
|
"character": 102
|
|
5101
5368
|
},
|
|
5102
|
-
"name": "RenderingContext"
|
|
5369
|
+
"name": "RenderingContext",
|
|
5370
|
+
"componentId": {
|
|
5371
|
+
"scope": "teambit.preview",
|
|
5372
|
+
"name": "preview"
|
|
5373
|
+
}
|
|
5103
5374
|
},
|
|
5104
5375
|
"isOptional": false,
|
|
5105
5376
|
"isSpread": false
|
|
@@ -5172,7 +5443,11 @@
|
|
|
5172
5443
|
"line": 42,
|
|
5173
5444
|
"character": 64
|
|
5174
5445
|
},
|
|
5175
|
-
"name": "PreviewModule"
|
|
5446
|
+
"name": "PreviewModule",
|
|
5447
|
+
"componentId": {
|
|
5448
|
+
"scope": "teambit.preview",
|
|
5449
|
+
"name": "preview"
|
|
5450
|
+
}
|
|
5176
5451
|
},
|
|
5177
5452
|
"isOptional": false,
|
|
5178
5453
|
"isSpread": false
|
|
@@ -5234,7 +5509,11 @@
|
|
|
5234
5509
|
"line": 50,
|
|
5235
5510
|
"character": 57
|
|
5236
5511
|
},
|
|
5237
|
-
"name": "PreviewModule"
|
|
5512
|
+
"name": "PreviewModule",
|
|
5513
|
+
"componentId": {
|
|
5514
|
+
"scope": "teambit.preview",
|
|
5515
|
+
"name": "preview"
|
|
5516
|
+
}
|
|
5238
5517
|
},
|
|
5239
5518
|
"isOptional": false,
|
|
5240
5519
|
"isSpread": false
|
|
@@ -5255,7 +5534,8 @@
|
|
|
5255
5534
|
"line": 50,
|
|
5256
5535
|
"character": 73
|
|
5257
5536
|
},
|
|
5258
|
-
"name": "CompositionBrowserMetadataObject"
|
|
5537
|
+
"name": "CompositionBrowserMetadataObject",
|
|
5538
|
+
"internalFilePath": "composition.ts"
|
|
5259
5539
|
},
|
|
5260
5540
|
{
|
|
5261
5541
|
"__schema": "KeywordTypeSchema",
|
|
@@ -5345,7 +5625,11 @@
|
|
|
5345
5625
|
"line": 85,
|
|
5346
5626
|
"character": 37
|
|
5347
5627
|
},
|
|
5348
|
-
"name": "PreviewPreview"
|
|
5628
|
+
"name": "PreviewPreview",
|
|
5629
|
+
"componentId": {
|
|
5630
|
+
"scope": "teambit.preview",
|
|
5631
|
+
"name": "preview"
|
|
5632
|
+
}
|
|
5349
5633
|
}
|
|
5350
5634
|
]
|
|
5351
5635
|
},
|
|
@@ -5458,7 +5742,12 @@
|
|
|
5458
5742
|
"line": 11,
|
|
5459
5743
|
"character": 5
|
|
5460
5744
|
},
|
|
5461
|
-
"name": "ComponentPreviewProps"
|
|
5745
|
+
"name": "ComponentPreviewProps",
|
|
5746
|
+
"componentId": {
|
|
5747
|
+
"scope": "teambit.preview",
|
|
5748
|
+
"name": "ui/component-preview",
|
|
5749
|
+
"version": "1.0.19"
|
|
5750
|
+
}
|
|
5462
5751
|
}
|
|
5463
5752
|
]
|
|
5464
5753
|
}
|
|
@@ -5487,7 +5776,8 @@
|
|
|
5487
5776
|
"line": 13,
|
|
5488
5777
|
"character": 93
|
|
5489
5778
|
},
|
|
5490
|
-
"name": "ComponentCompositionProps"
|
|
5779
|
+
"name": "ComponentCompositionProps",
|
|
5780
|
+
"internalFilePath": "ui/composition-preview.tsx"
|
|
5491
5781
|
},
|
|
5492
5782
|
"isOptional": false,
|
|
5493
5783
|
"objectBindingNodes": [
|
|
@@ -5560,7 +5850,7 @@
|
|
|
5560
5850
|
"componentId": {
|
|
5561
5851
|
"scope": "teambit.compositions",
|
|
5562
5852
|
"name": "compositions",
|
|
5563
|
-
"version": "1.0.
|
|
5853
|
+
"version": "1.0.515"
|
|
5564
5854
|
},
|
|
5565
5855
|
"taggedModuleExports": []
|
|
5566
5856
|
}
|
|
@@ -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.515/dist/compositions.composition.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.compositions_compositions@1.0.515/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.515",
|
|
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.515"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"graphql-tag": "2.12.1",
|
|
@@ -34,26 +34,26 @@
|
|
|
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.515",
|
|
38
38
|
"@teambit/compositions.model.composition-id": "0.0.504",
|
|
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/legacy.consumer-component": "0.0.
|
|
45
|
-
"@teambit/preview": "1.0.
|
|
46
|
-
"@teambit/schema": "1.0.
|
|
47
|
-
"@teambit/scope": "1.0.
|
|
39
|
+
"@teambit/graphql": "1.0.515",
|
|
40
|
+
"@teambit/cli": "0.0.1092",
|
|
41
|
+
"@teambit/component.sources": "0.0.72",
|
|
42
|
+
"@teambit/dev-files": "1.0.515",
|
|
43
|
+
"@teambit/envs": "1.0.515",
|
|
44
|
+
"@teambit/legacy.consumer-component": "0.0.21",
|
|
45
|
+
"@teambit/preview": "1.0.515",
|
|
46
|
+
"@teambit/schema": "1.0.515",
|
|
47
|
+
"@teambit/scope": "1.0.515",
|
|
48
48
|
"@teambit/toolbox.path.match-patterns": "0.0.17",
|
|
49
|
-
"@teambit/workspace": "1.0.
|
|
49
|
+
"@teambit/workspace": "1.0.515",
|
|
50
50
|
"@teambit/design.ui.tooltip": "0.0.372",
|
|
51
51
|
"@teambit/docs.ui.queries.get-docs": "0.0.509",
|
|
52
|
-
"@teambit/panels": "0.0.
|
|
52
|
+
"@teambit/panels": "0.0.1094",
|
|
53
53
|
"@teambit/preview.ui.component-preview": "1.0.19",
|
|
54
54
|
"@teambit/ui-foundation.ui.buttons.collapser": "0.0.225",
|
|
55
|
-
"@teambit/component-compare": "1.0.
|
|
56
|
-
"@teambit/ui": "1.0.
|
|
55
|
+
"@teambit/component-compare": "1.0.515",
|
|
56
|
+
"@teambit/ui": "1.0.515"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/lodash": "4.14.165",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@types/classnames": "2.2.11",
|
|
62
62
|
"@types/mocha": "9.1.0",
|
|
63
63
|
"@teambit/component-id": "1.2.2",
|
|
64
|
-
"@teambit/harmony.envs.core-aspect-env": "0.0.
|
|
64
|
+
"@teambit/harmony.envs.core-aspect-env": "0.0.68",
|
|
65
65
|
"@teambit/compositions.aspect-docs.compositions": "0.0.171"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|