@teambit/ui 0.0.953 → 0.0.955
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/create-root.js
CHANGED
package/dist/create-root.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["createRoot","aspectDefs","rootExtensionName","rootAspect","UIAspect","id","runtime","config","ignoreVersion","rootId","identifiers","getIdentifiers","idSetters","getIdSetters","stringifiedConfig","toWindowsCompatiblePath","JSON","stringify","replace","createImports","join","defs","filter","def","runtimePath","getImportStatements","pathProp","suffix","map","aspectDef","getIdentifier","getId","undefined","ComponentID","fromString","toStringWithoutVersion","toString","val","component","local","getCoreIdentifier","aspectPath","getRegularAspectIdentifier","targetName","camelCase","parse","base","sourceName","getDefaultOrOnlyExport","identifier","filePath","exports","require","default","Object","keys","length","e","path","name","split"],"sources":["create-root.ts"],"sourcesContent":["import { AspectDefinition } from '@teambit/aspect-loader';\nimport { ComponentID } from '@teambit/component-id';\nimport { toWindowsCompatiblePath } from '@teambit/toolbox.path.to-windows-compatible-path';\nimport { camelCase } from 'lodash';\nimport { parse } from 'path';\n\nimport { UIAspect } from './ui.aspect';\n\nexport async function createRoot(\n aspectDefs: AspectDefinition[],\n rootExtensionName?: string,\n rootAspect = UIAspect.id,\n runtime = 'ui',\n config = {},\n ignoreVersion?: boolean\n) {\n const rootId = rootExtensionName ? `'${rootExtensionName}'` : '';\n const identifiers = getIdentifiers(aspectDefs, 'Aspect');\n\n const idSetters = getIdSetters(aspectDefs, 'Aspect', ignoreVersion);\n config['teambit.harmony/bit'] = rootExtensionName;\n // Escaping \"'\" in case for example in the config you have something like:\n // description: \"team's scope\"\n const stringifiedConfig = toWindowsCompatiblePath(JSON.stringify(config)).replace(/'/g, \"\\\\'\");\n\n return `\n${createImports(aspectDefs)}\n\nconst isBrowser = typeof window !== \"undefined\";\nconst config = JSON.parse('${stringifiedConfig}');\n${idSetters.join('\\n')}\nexport default function render(...props){\n return Harmony.load([${identifiers.join(', ')}], '${runtime}', config)\n .then((harmony) => {\n return harmony\n .run()\n .then(() => harmony.get('${rootAspect}'))\n .then((rootExtension) => {\n const ssrSetup = !isBrowser && rootExtension.setupSsr;\n const setup = rootExtension.setup;\n const setupFunc = (ssrSetup || setup || function noop(){}).bind(rootExtension);\n\n return (\n Promise.resolve(setupFunc())\n .then(() => rootExtension)\n );\n })\n .then((rootExtension) => {\n if (isBrowser) {\n return rootExtension.render(${rootId}, ...props);\n } else {\n return rootExtension.renderSsr(${rootId}, ...props);\n }\n })\n .catch((err) => {\n throw err;\n });\n });\n}\n\nif (isBrowser) render();\n`;\n}\n\nfunction createImports(aspectDefs: AspectDefinition[]) {\n const defs = aspectDefs.filter((def) => def.runtimePath);\n\n return `import { Harmony } from '@teambit/harmony';\n${getImportStatements(aspectDefs, 'aspectFilePath', 'Aspect')}\n${getImportStatements(defs, 'runtimePath', 'Runtime')}`;\n}\n\nfunction getImportStatements(aspectDefs: AspectDefinition[], pathProp: string, suffix: string): string {\n return aspectDefs\n .map(\n (aspectDef) =>\n `import ${getIdentifier(aspectDef, suffix, pathProp)} from '${toWindowsCompatiblePath(aspectDef[pathProp])}';`\n )\n .join('\\n');\n}\n\nfunction getIdentifiers(aspectDefs: AspectDefinition[], suffix: string): string[] {\n return aspectDefs.map((aspectDef) => `${getIdentifier(aspectDef, suffix)}`);\n}\n\nfunction getIdSetters(defs: AspectDefinition[], suffix: string, ignoreVersion?: boolean) {\n return defs\n .map((def) => {\n if (!def.getId) return undefined;\n const id = ComponentID.fromString(def.getId);\n return `${getIdentifier(def, suffix)}.id = '${ignoreVersion ? id.toStringWithoutVersion() : id.toString()}';`;\n })\n .filter((val) => !!val);\n}\n\nfunction getIdentifier(aspectDef: AspectDefinition, suffix: string, pathProp?: string): string {\n if (!aspectDef.component && !aspectDef.local) {\n return getCoreIdentifier(aspectDef.aspectPath, suffix);\n }\n return getRegularAspectIdentifier(aspectDef, suffix, pathProp);\n}\n\nfunction getRegularAspectIdentifier(aspectDef: AspectDefinition, suffix: string, pathProp?: string): string {\n const targetName = camelCase(`${parse(aspectDef.aspectPath).base.replace(/\\./, '__').replace('@', '__')}${suffix}`);\n const sourceName = pathProp ? getDefaultOrOnlyExport(aspectDef[pathProp]) : undefined;\n const identifier = sourceName ? `{${sourceName} as ${targetName}}` : targetName;\n return identifier;\n}\n\nfunction getDefaultOrOnlyExport(filePath: string): string | undefined {\n try {\n // eslint-disable-next-line import/no-dynamic-require, global-require\n const exports = require(filePath);\n if (exports.default) return undefined;\n if (Object.keys(exports).length === 1) return Object.keys(exports)[0];\n } catch (e) {\n // ignore this error, fallback to just using the default export\n }\n return undefined;\n}\n\nfunction getCoreIdentifier(path: string, suffix: string): string {\n return camelCase(`${parse(path).name.split('.')[0]}${suffix}`);\n}\n"],"mappings":";;;;;;;;;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEO,eAAeA,UAAU,CAC9BC,UAA8B,EAC9BC,iBAA0B,EAC1BC,UAAU,GAAGC,cAAQ,CAACC,EAAE,EACxBC,OAAO,GAAG,IAAI,EACdC,MAAM,GAAG,CAAC,CAAC,EACXC,aAAuB,EACvB;EACA,MAAMC,MAAM,GAAGP,iBAAiB,GAAI,IAAGA,iBAAkB,GAAE,GAAG,EAAE;EAChE,MAAMQ,WAAW,GAAGC,cAAc,CAACV,UAAU,EAAE,QAAQ,CAAC;EAExD,MAAMW,SAAS,GAAGC,YAAY,CAACZ,UAAU,EAAE,QAAQ,EAAEO,aAAa,CAAC;EACnED,MAAM,CAAC,qBAAqB,CAAC,GAAGL,iBAAiB;EACjD;EACA;EACA,MAAMY,iBAAiB,GAAG,IAAAC,sCAAuB,EAACC,IAAI,CAACC,SAAS,CAACV,MAAM,CAAC,CAAC,CAACW,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;EAE9F,OAAQ;AACV,EAAEC,aAAa,CAAClB,UAAU,CAAE;AAC5B;AACA;AACA,6BAA6Ba,iBAAkB;AAC/C,EAAEF,SAAS,CAACQ,IAAI,CAAC,IAAI,CAAE;AACvB;AACA,yBAAyBV,WAAW,CAACU,IAAI,CAAC,IAAI,CAAE,OAAMd,OAAQ;AAC9D;AACA;AACA;AACA,iCAAiCH,UAAW;AAC5C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wCAAwCM,MAAO;AAC/C;AACA,2CAA2CA,MAAO;AAClD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;
|
|
1
|
+
{"version":3,"names":["createRoot","aspectDefs","rootExtensionName","rootAspect","UIAspect","id","runtime","config","ignoreVersion","rootId","identifiers","getIdentifiers","idSetters","getIdSetters","stringifiedConfig","toWindowsCompatiblePath","JSON","stringify","replace","createImports","join","defs","filter","def","runtimePath","getImportStatements","pathProp","suffix","map","aspectDef","getIdentifier","getId","undefined","ComponentID","fromString","toStringWithoutVersion","toString","val","component","local","getCoreIdentifier","aspectPath","getRegularAspectIdentifier","targetName","camelCase","parse","base","sourceName","getDefaultOrOnlyExport","identifier","filePath","exports","require","default","Object","keys","length","e","path","name","split"],"sources":["create-root.ts"],"sourcesContent":["import { AspectDefinition } from '@teambit/aspect-loader';\nimport { ComponentID } from '@teambit/component-id';\nimport { toWindowsCompatiblePath } from '@teambit/toolbox.path.to-windows-compatible-path';\nimport { camelCase } from 'lodash';\nimport { parse } from 'path';\n\nimport { UIAspect } from './ui.aspect';\n\nexport async function createRoot(\n aspectDefs: AspectDefinition[],\n rootExtensionName?: string,\n rootAspect = UIAspect.id,\n runtime = 'ui',\n config = {},\n ignoreVersion?: boolean\n) {\n const rootId = rootExtensionName ? `'${rootExtensionName}'` : '';\n const identifiers = getIdentifiers(aspectDefs, 'Aspect');\n\n const idSetters = getIdSetters(aspectDefs, 'Aspect', ignoreVersion);\n config['teambit.harmony/bit'] = rootExtensionName;\n // Escaping \"'\" in case for example in the config you have something like:\n // description: \"team's scope\"\n const stringifiedConfig = toWindowsCompatiblePath(JSON.stringify(config)).replace(/'/g, \"\\\\'\");\n\n return `\n${createImports(aspectDefs)}\n\nconst isBrowser = typeof window !== \"undefined\";\nconst config = JSON.parse('${stringifiedConfig}');\n${idSetters.join('\\n')}\nexport default function render(...props){\n return Harmony.load([${identifiers.join(', ')}], '${runtime}', config)\n .then((harmony) => {\n return harmony\n .run()\n .then(() => harmony.get('${rootAspect}'))\n .then((rootExtension) => {\n const ssrSetup = !isBrowser && rootExtension.setupSsr;\n const setup = rootExtension.setup;\n const setupFunc = (ssrSetup || setup || function noop(){}).bind(rootExtension);\n\n return (\n Promise.resolve(setupFunc())\n .then(() => rootExtension)\n );\n })\n .then((rootExtension) => {\n if (isBrowser) {\n return rootExtension.render(${rootId}, ...props);\n } else {\n return rootExtension.renderSsr(${rootId}, ...props);\n }\n })\n .catch((err) => {\n throw err;\n });\n });\n}\n\nif (isBrowser || '${runtime}' === 'main') render();\n`;\n}\n\nfunction createImports(aspectDefs: AspectDefinition[]) {\n const defs = aspectDefs.filter((def) => def.runtimePath);\n\n return `import { Harmony } from '@teambit/harmony';\n${getImportStatements(aspectDefs, 'aspectFilePath', 'Aspect')}\n${getImportStatements(defs, 'runtimePath', 'Runtime')}`;\n}\n\nfunction getImportStatements(aspectDefs: AspectDefinition[], pathProp: string, suffix: string): string {\n return aspectDefs\n .map(\n (aspectDef) =>\n `import ${getIdentifier(aspectDef, suffix, pathProp)} from '${toWindowsCompatiblePath(aspectDef[pathProp])}';`\n )\n .join('\\n');\n}\n\nfunction getIdentifiers(aspectDefs: AspectDefinition[], suffix: string): string[] {\n return aspectDefs.map((aspectDef) => `${getIdentifier(aspectDef, suffix)}`);\n}\n\nfunction getIdSetters(defs: AspectDefinition[], suffix: string, ignoreVersion?: boolean) {\n return defs\n .map((def) => {\n if (!def.getId) return undefined;\n const id = ComponentID.fromString(def.getId);\n return `${getIdentifier(def, suffix)}.id = '${ignoreVersion ? id.toStringWithoutVersion() : id.toString()}';`;\n })\n .filter((val) => !!val);\n}\n\nfunction getIdentifier(aspectDef: AspectDefinition, suffix: string, pathProp?: string): string {\n if (!aspectDef.component && !aspectDef.local) {\n return getCoreIdentifier(aspectDef.aspectPath, suffix);\n }\n return getRegularAspectIdentifier(aspectDef, suffix, pathProp);\n}\n\nfunction getRegularAspectIdentifier(aspectDef: AspectDefinition, suffix: string, pathProp?: string): string {\n const targetName = camelCase(`${parse(aspectDef.aspectPath).base.replace(/\\./, '__').replace('@', '__')}${suffix}`);\n const sourceName = pathProp ? getDefaultOrOnlyExport(aspectDef[pathProp]) : undefined;\n const identifier = sourceName ? `{${sourceName} as ${targetName}}` : targetName;\n return identifier;\n}\n\nfunction getDefaultOrOnlyExport(filePath: string): string | undefined {\n try {\n // eslint-disable-next-line import/no-dynamic-require, global-require\n const exports = require(filePath);\n if (exports.default) return undefined;\n if (Object.keys(exports).length === 1) return Object.keys(exports)[0];\n } catch (e) {\n // ignore this error, fallback to just using the default export\n }\n return undefined;\n}\n\nfunction getCoreIdentifier(path: string, suffix: string): string {\n return camelCase(`${parse(path).name.split('.')[0]}${suffix}`);\n}\n"],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@0.0.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@0.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@0.0.955/dist/ui.composition.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@0.0.955/dist/ui.docs.mdx';
|
|
3
3
|
|
|
4
4
|
export const compositions = [compositions_0];
|
|
5
5
|
export const overview = [overview_0];
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.955",
|
|
4
4
|
"homepage": "https://bit.dev/teambit/ui-foundation/ui",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.ui-foundation",
|
|
8
8
|
"name": "ui",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.955"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"lodash": "4.17.21",
|
|
@@ -50,29 +50,29 @@
|
|
|
50
50
|
"@teambit/base-ui.loaders.loader-ribbon": "1.0.0",
|
|
51
51
|
"@teambit/base-ui.theme.fonts.roboto": "1.0.0",
|
|
52
52
|
"@teambit/design.themes.theme-toggler": "0.1.3",
|
|
53
|
-
"@teambit/aspect-loader": "0.0.
|
|
53
|
+
"@teambit/aspect-loader": "0.0.955",
|
|
54
54
|
"@teambit/component-id": "0.0.425",
|
|
55
55
|
"@teambit/toolbox.path.to-windows-compatible-path": "0.0.490",
|
|
56
56
|
"@teambit/ui-foundation.ui.hooks.use-data-query": "0.0.500",
|
|
57
57
|
"@teambit/bit-error": "0.0.402",
|
|
58
|
-
"@teambit/cli": "0.0.
|
|
59
|
-
"@teambit/logger": "0.0.
|
|
58
|
+
"@teambit/cli": "0.0.640",
|
|
59
|
+
"@teambit/logger": "0.0.733",
|
|
60
60
|
"@teambit/ui-foundation.cli.ui-server-console": "0.0.498",
|
|
61
|
-
"@teambit/bundler": "0.0.
|
|
62
|
-
"@teambit/component": "0.0.
|
|
63
|
-
"@teambit/express": "0.0.
|
|
64
|
-
"@teambit/graphql": "0.0.
|
|
61
|
+
"@teambit/bundler": "0.0.955",
|
|
62
|
+
"@teambit/component": "0.0.955",
|
|
63
|
+
"@teambit/express": "0.0.738",
|
|
64
|
+
"@teambit/graphql": "0.0.955",
|
|
65
65
|
"@teambit/toolbox.network.get-port": "0.0.121",
|
|
66
|
-
"@teambit/aspect": "0.0.
|
|
67
|
-
"@teambit/cache": "0.0.
|
|
68
|
-
"@teambit/pubsub": "0.0.
|
|
69
|
-
"@teambit/react-router": "0.0.
|
|
66
|
+
"@teambit/aspect": "0.0.955",
|
|
67
|
+
"@teambit/cache": "0.0.733",
|
|
68
|
+
"@teambit/pubsub": "0.0.955",
|
|
69
|
+
"@teambit/react-router": "0.0.955",
|
|
70
70
|
"@teambit/design.theme.icons-font": "2.0.26",
|
|
71
71
|
"@teambit/design.ui.tooltip": "0.0.361",
|
|
72
72
|
"@teambit/ui-foundation.ui.global-loader": "0.0.497",
|
|
73
73
|
"@teambit/webpack.modules.generate-style-loaders": "0.0.110",
|
|
74
74
|
"@teambit/webpack.modules.style-regexps": "0.0.139",
|
|
75
|
-
"@teambit/webpack": "0.0.
|
|
75
|
+
"@teambit/webpack": "0.0.955"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@types/lodash": "4.14.165",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"peerDependencies": {
|
|
94
94
|
"@apollo/client": "^3.6.0",
|
|
95
95
|
"react-router-dom": "^6.0.0",
|
|
96
|
-
"@teambit/legacy": "1.0.
|
|
96
|
+
"@teambit/legacy": "1.0.422",
|
|
97
97
|
"react": "^16.8.0 || ^17.0.0",
|
|
98
98
|
"react-dom": "^16.8.0 || ^17.0.0"
|
|
99
99
|
},
|
|
Binary file
|