@teambit/ui 0.0.917 → 0.0.919

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.
@@ -10,6 +10,7 @@ export declare class UIBuildCmd implements Command {
10
10
  alias: string;
11
11
  group: string;
12
12
  options: never[];
13
+ private: boolean;
13
14
  constructor(
14
15
  /**
15
16
  * access to the extension instance.
@@ -33,6 +33,7 @@ class UIBuildCmd {
33
33
  (0, _defineProperty2().default)(this, "alias", 'c');
34
34
  (0, _defineProperty2().default)(this, "group", 'development');
35
35
  (0, _defineProperty2().default)(this, "options", []);
36
+ (0, _defineProperty2().default)(this, "private", true);
36
37
  }
37
38
  async report([type]) {
38
39
  // teambit.workspace/variants should be the one to take care of component patterns.
@@ -1 +1 @@
1
- {"version":3,"names":["UIBuildCmd","constructor","ui","report","type","stats","build","UnknownBuildError","toString"],"sources":["ui-build.cmd.tsx"],"sourcesContent":["import { Command } from '@teambit/cli';\nimport { UnknownBuildError } from './exceptions';\n\nimport { UiMain } from './ui.main.runtime';\n\nexport class UIBuildCmd implements Command {\n name = 'ui-build [type]';\n description = 'build production assets for deployment.';\n alias = 'c';\n group = 'development';\n options = [];\n\n constructor(\n /**\n * access to the extension instance.\n */\n private ui: UiMain\n ) {}\n\n async report([type]: [string]): Promise<string> {\n // teambit.workspace/variants should be the one to take care of component patterns.\n const stats = await this.ui.build(type);\n if (!stats) throw new UnknownBuildError();\n return stats.toString();\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAIO,MAAMA,UAAU,CAAoB;EAOzCC,WAAW;EACT;AACJ;AACA;EACYC,EAAU,EAClB;IAAA,KADQA,EAAU,GAAVA,EAAU;IAAA,8CAVb,iBAAiB;IAAA,qDACV,yCAAyC;IAAA,+CAC/C,GAAG;IAAA,+CACH,aAAa;IAAA,iDACX,EAAE;EAOT;EAEH,MAAMC,MAAM,CAAC,CAACC,IAAI,CAAW,EAAmB;IAC9C;IACA,MAAMC,KAAK,GAAG,MAAM,IAAI,CAACH,EAAE,CAACI,KAAK,CAACF,IAAI,CAAC;IACvC,IAAI,CAACC,KAAK,EAAE,MAAM,KAAIE,+BAAiB,GAAE;IACzC,OAAOF,KAAK,CAACG,QAAQ,EAAE;EACzB;AACF;AAAC"}
1
+ {"version":3,"names":["UIBuildCmd","constructor","ui","report","type","stats","build","UnknownBuildError","toString"],"sources":["ui-build.cmd.tsx"],"sourcesContent":["import { Command } from '@teambit/cli';\nimport { UnknownBuildError } from './exceptions';\n\nimport { UiMain } from './ui.main.runtime';\n\nexport class UIBuildCmd implements Command {\n name = 'ui-build [type]';\n description = 'build production assets for deployment.';\n alias = 'c';\n group = 'development';\n options = [];\n private = true;\n\n constructor(\n /**\n * access to the extension instance.\n */\n private ui: UiMain\n ) {}\n\n async report([type]: [string]): Promise<string> {\n // teambit.workspace/variants should be the one to take care of component patterns.\n const stats = await this.ui.build(type);\n if (!stats) throw new UnknownBuildError();\n return stats.toString();\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAIO,MAAMA,UAAU,CAAoB;EAQzCC,WAAW;EACT;AACJ;AACA;EACYC,EAAU,EAClB;IAAA,KADQA,EAAU,GAAVA,EAAU;IAAA,8CAXb,iBAAiB;IAAA,qDACV,yCAAyC;IAAA,+CAC/C,GAAG;IAAA,+CACH,aAAa;IAAA,iDACX,EAAE;IAAA,iDACF,IAAI;EAOX;EAEH,MAAMC,MAAM,CAAC,CAACC,IAAI,CAAW,EAAmB;IAC9C;IACA,MAAMC,KAAK,GAAG,MAAM,IAAI,CAACH,EAAE,CAACI,KAAK,CAACF,IAAI,CAAC;IACvC,IAAI,CAACC,KAAK,EAAE,MAAM,KAAIE,+BAAiB,GAAE;IACzC,OAAOF,KAAK,CAACG,QAAQ,EAAE;EACzB;AACF;AAAC"}
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/ui",
3
- "version": "0.0.917",
3
+ "version": "0.0.919",
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.917"
9
+ "version": "0.0.919"
10
10
  },
11
11
  "dependencies": {
12
12
  "lodash": "4.17.21",
@@ -50,28 +50,28 @@
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.917",
53
+ "@teambit/aspect-loader": "0.0.919",
54
54
  "@teambit/toolbox.path.to-windows-compatible-path": "0.0.490",
55
55
  "@teambit/ui-foundation.ui.hooks.use-data-query": "0.0.498",
56
56
  "@teambit/bit-error": "0.0.402",
57
- "@teambit/cli": "0.0.613",
58
- "@teambit/logger": "0.0.706",
57
+ "@teambit/cli": "0.0.615",
58
+ "@teambit/logger": "0.0.708",
59
59
  "@teambit/ui-foundation.cli.ui-server-console": "0.0.498",
60
- "@teambit/bundler": "0.0.917",
61
- "@teambit/component": "0.0.917",
62
- "@teambit/express": "0.0.711",
63
- "@teambit/graphql": "0.0.917",
60
+ "@teambit/bundler": "0.0.919",
61
+ "@teambit/component": "0.0.919",
62
+ "@teambit/express": "0.0.713",
63
+ "@teambit/graphql": "0.0.919",
64
64
  "@teambit/toolbox.network.get-port": "0.0.121",
65
- "@teambit/aspect": "0.0.917",
66
- "@teambit/cache": "0.0.706",
67
- "@teambit/pubsub": "0.0.917",
68
- "@teambit/react-router": "0.0.917",
65
+ "@teambit/aspect": "0.0.919",
66
+ "@teambit/cache": "0.0.708",
67
+ "@teambit/pubsub": "0.0.919",
68
+ "@teambit/react-router": "0.0.919",
69
69
  "@teambit/design.theme.icons-font": "2.0.24",
70
70
  "@teambit/design.ui.tooltip": "0.0.359",
71
71
  "@teambit/ui-foundation.ui.global-loader": "0.0.495",
72
72
  "@teambit/webpack.modules.generate-style-loaders": "0.0.110",
73
73
  "@teambit/webpack.modules.style-regexps": "0.0.139",
74
- "@teambit/webpack": "0.0.917"
74
+ "@teambit/webpack": "0.0.919"
75
75
  },
76
76
  "devDependencies": {
77
77
  "@types/lodash": "4.14.165",
@@ -92,7 +92,7 @@
92
92
  "peerDependencies": {
93
93
  "@apollo/client": "^3.6.0",
94
94
  "react-router-dom": "^6.0.0",
95
- "@teambit/legacy": "1.0.391",
95
+ "@teambit/legacy": "1.0.396",
96
96
  "react-dom": "^16.8.0 || ^17.0.0",
97
97
  "react": "^16.8.0 || ^17.0.0"
98
98
  },
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@0.0.917/dist/ui.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@0.0.917/dist/ui.docs.mdx';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@0.0.919/dist/ui.composition.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@0.0.919/dist/ui.docs.mdx';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
package/ui-build.cmd.tsx CHANGED
@@ -9,6 +9,7 @@ export class UIBuildCmd implements Command {
9
9
  alias = 'c';
10
10
  group = 'development';
11
11
  options = [];
12
+ private = true;
12
13
 
13
14
  constructor(
14
15
  /**
Binary file