Skip to content

Commit

Permalink
feat: Labels and the Integration message added (#885)
Browse files Browse the repository at this point in the history
  • Loading branch information
chavda-bhavik authored and Mayur committed Nov 27, 2024
2 parents ad5828a + 984d7a1 commit 6d4e3c1
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 16 deletions.
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/api",
"version": "0.27.1",
"version": "0.27.2",
"author": "implerhq",
"license": "MIT",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion apps/queue-manager/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/queue-manager",
"version": "0.27.1",
"version": "0.27.2",
"author": "implerhq",
"license": "MIT",
"private": true,
Expand Down
3 changes: 2 additions & 1 deletion apps/web/components/Integration/IntegrationData.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Link from 'next/link';
import React, { ReactNode } from 'react';
import { Code, List } from '@mantine/core';
import { Code, List, Text } from '@mantine/core';

import { colors, DOCUMENTATION_REFERENCE_LINKS } from '@config';
import { CodeBlock } from './ContentBlock';
Expand Down Expand Up @@ -1002,6 +1002,7 @@ export class AppComponent {
),
'2) Add Import Button': ({ accessToken, projectId, templateId }) => (
<>
<Text>Here are the projectId, templateId and accessToken for the Bubble Integration</Text>
<CodeBlock
height={HEIGHTS.WITH_TEXT}
code={`
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/web",
"version": "0.27.1",
"version": "0.27.2",
"author": "implerhq",
"license": "MIT",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion apps/widget/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/widget",
"version": "0.27.1",
"version": "0.27.2",
"author": "implerhq",
"license": "MIT",
"private": true,
Expand Down
8 changes: 6 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"npmClient": "pnpm",
"useNx": true,
"packages": ["apps/*", "libs/*", "packages/*"],
"version": "0.27.1"
"packages": [
"apps/*",
"libs/*",
"packages/*"
],
"version": "0.27.2"
}
2 changes: 1 addition & 1 deletion libs/dal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/dal",
"version": "0.27.1",
"version": "0.27.2",
"author": "implerhq",
"license": "MIT",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion libs/embed/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/embed",
"version": "0.27.1",
"version": "0.27.2",
"private": true,
"license": "MIT",
"author": "implerhq",
Expand Down
2 changes: 1 addition & 1 deletion libs/services/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/services",
"version": "0.27.1",
"version": "0.27.2",
"description": "Reusable services to shared between backend api and queue-manager",
"license": "MIT",
"author": "implerhq",
Expand Down
2 changes: 1 addition & 1 deletion libs/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/shared",
"version": "0.27.1",
"version": "0.27.2",
"description": "Reusable types and classes to shared between apps and libraries",
"license": "MIT",
"author": "implerhq",
Expand Down
4 changes: 2 additions & 2 deletions packages/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/angular",
"version": "0.27.1",
"version": "0.27.2",
"description": "Angular library to show CSV Excel Importer in angular applications",
"license": "MIT",
"author": "implerhq",
Expand Down Expand Up @@ -52,6 +52,6 @@
"typescript": "^4.4.4"
},
"dependencies": {
"@impler/client": "^0.27.1"
"@impler/client": "^0.27.2"
}
}
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/client",
"version": "0.27.1",
"version": "0.27.2",
"description": "API client to be used in end user environments",
"license": "MIT",
"author": "implerhq",
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@impler/react",
"version": "0.27.1",
"version": "0.27.2",
"description": "React library to show CSV Excel Importer in react applications",
"license": "MIT",
"author": "implerhq",
Expand Down Expand Up @@ -53,6 +53,6 @@
"typescript": "^4.4.4"
},
"dependencies": {
"@impler/client": "^0.27.1"
"@impler/client": "^0.27.2"
}
}

0 comments on commit 6d4e3c1

Please sign in to comment.