Skip to content

Commit

Permalink
chore(release): 2.0.0-TP2-RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
lordrip committed Feb 29, 2024
1 parent 2cdbd8d commit 225ca49
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"ajv-formats": "^2.1.1",
"clsx": "^2.1.0",
"html-to-image": "^1.11.11",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.isempty": "^4.4.0",
"lodash.set": "^4.3.2",
Expand Down Expand Up @@ -107,7 +108,6 @@
"jest": "^29.4.2",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.4.2",
"lodash.clonedeep": "^4.5.0",
"prettier": "^3.0.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/Form/bean/NewBeanModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { FunctionComponent, useCallback, useEffect, useRef, useState } from 'rea
import { KaotoSchemaDefinition } from '../../../models';
import { MetadataEditor } from '../../MetadataEditor';
import { CustomAutoFormRef } from '../CustomAutoForm';
import cloneDeep from 'lodash.clonedeep';
import cloneDeep from 'lodash/cloneDeep';
import { isDefined } from '../../../utils';

export type NewBeanModalProps = {
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/models/camel/kamelet-resource.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import set from 'lodash.set';
import set from 'lodash/set';
import { TileFilter } from '../../public-api';
import { IKameletDefinition } from '../kamelets-catalog';
import { AddStepMode } from '../visualization/base-visual-entity';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as catalogIndex from '@kaoto-next/camel-catalog/index.json';
import cloneDeep from 'lodash.clonedeep';
import cloneDeep from 'lodash/cloneDeep';
import { camelRouteJson } from '../../../stubs/camel-route';
import { CamelRouteVisualEntity } from './camel-route-visual-entity';
import { CamelCatalogService } from './camel-catalog.service';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ProcessorDefinition, RouteDefinition } from '@kaoto-next/camel-catalog/types';
import cloneDeep from 'lodash.clonedeep';
import cloneDeep from 'lodash/cloneDeep';
import { camelFromJson } from '../../../stubs/camel-from';
import { camelRouteJson } from '../../../stubs/camel-route';
import { ROOT_PATH } from '../../../utils';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Pipe } from '@kaoto-next/camel-catalog/types';
import get from 'lodash.get';
import set from 'lodash.set';
import get from 'lodash/get';
import set from 'lodash/set';
import { getCamelRandomId } from '../../../camel-utils/camel-random-id';
import { getArrayProperty, NodeIconResolver } from '../../../utils';
import { DefinedComponent } from '../../camel-catalog-index';
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/utils/camel-uri-helper.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import get from 'lodash.get';
import get from 'lodash/get';
import { getParsedValue } from './get-parsed-value';

type ParsedParameters = Record<string, string | boolean | number>;
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/src/utils/get-array-property.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import get from 'lodash.get';
import set from 'lodash.set';
import get from 'lodash/get';
import set from 'lodash/set';

export const getArrayProperty = (model: object, path: string): unknown[] => {
let stepsArray: unknown[] | undefined = get(model, path);
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/utils/get-value.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import get from 'lodash.get';
import get from 'lodash/get';

export const ROOT_PATH = '#';

Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/utils/set-value.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import set from 'lodash.set';
import set from 'lodash/set';
import { ROOT_PATH } from './get-value';
import isEmpty from 'lodash.isempty';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import cloneDeep from 'lodash.clonedeep';
import cloneDeep from 'lodash/cloneDeep';
import { SourceSchemaType } from '../models/camel/source-schema-type';
import { IKameletDefinition } from '../models/kamelets-catalog';
import { updateKameletFromCustomSchema } from './update-kamelet-from-custom-schema';
Expand Down

0 comments on commit 225ca49

Please sign in to comment.