@circle-vibe/shared 1.1.50 → 1.1.52

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,6 +1,7 @@
1
+ import React from 'react';
1
2
  import { ExtendedReactFunctionalComponent } from 'src/types';
2
3
  import './centered-vertial-layout.scss';
3
- interface CenteredVertialLayoutProps {
4
+ interface CenteredVertialLayoutProps extends React.HtmlHTMLAttributes<HTMLDivElement> {
4
5
  space?: string;
5
6
  justifyContent?: string;
6
7
  }
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.CenteredVertialLayout = void 0;
7
7
  const react_1 = __importDefault(require("react"));
8
8
  require("./centered-vertial-layout.scss");
9
- const CenteredVertialLayout = ({ space = 'initial', justifyContent = 'initial', children, ...rest }) => (react_1.default.createElement("div", { className: "centered-vertical-layout", style: {
9
+ const CenteredVertialLayout = ({ space = 'initial', justifyContent = 'initial', children, className, ...rest }) => (react_1.default.createElement("div", { className: `centered-vertical-layout ${className ?? ''}`, style: {
10
10
  '--space': space,
11
11
  '--justify-content': justifyContent,
12
12
  }, ...rest }, children));
@@ -1 +1 @@
1
- {"version":3,"file":"centered-vertical-layout.js","sourceRoot":"","sources":["../../../../../src/components/layout/centered-vertical-layout/centered-vertical-layout.tsx"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAI1B,0CAAwC;AAOjC,MAAM,qBAAqB,GAAiE,CAAC,EAClG,KAAK,GAAG,SAAS,EACjB,cAAc,GAAG,SAAS,EAC1B,QAAQ,EACR,GAAG,IAAI,EACR,EAAE,EAAE,CAAC,CACJ,uCACE,SAAS,EAAC,0BAA0B,EACpC,KAAK,EACH;QACE,SAAS,EAAE,KAAK;QAChB,mBAAmB,EAAE,cAAc;KACd,KAErB,IAAI,IAEP,QAAQ,CACL,CACP,CAAC;AAlBW,QAAA,qBAAqB,yBAkBhC"}
1
+ {"version":3,"file":"centered-vertical-layout.js","sourceRoot":"","sources":["../../../../../src/components/layout/centered-vertical-layout/centered-vertical-layout.tsx"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAI1B,0CAAwC;AAOjC,MAAM,qBAAqB,GAAiE,CAAC,EAClG,KAAK,GAAG,SAAS,EACjB,cAAc,GAAG,SAAS,EAC1B,QAAQ,EACR,SAAS,EACT,GAAG,IAAI,EACR,EAAE,EAAE,CAAC,CACJ,uCACE,SAAS,EAAE,4BAA4B,SAAS,IAAI,EAAE,EAAE,EACxD,KAAK,EACH;QACE,SAAS,EAAE,KAAK;QAChB,mBAAmB,EAAE,cAAc;KACd,KAErB,IAAI,IAEP,QAAQ,CACL,CACP,CAAC;AAnBW,QAAA,qBAAqB,yBAmBhC"}
@@ -4,6 +4,7 @@ export interface MessageFile {
4
4
  fileName: string;
5
5
  description: string;
6
6
  url: string;
7
+ optimizedUrl: string;
7
8
  type: MessageFileType;
8
9
  entityType: MessageFileEntityType;
9
10
  }
@@ -6,6 +6,7 @@ export interface User {
6
6
  birthDate: Date;
7
7
  password: string;
8
8
  avatarUrl: string;
9
+ avatarUrlOptimized: string;
9
10
  isHiddenContactInfo: boolean;
10
11
  country: string;
11
12
  city: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@circle-vibe/shared",
3
- "version": "1.1.50",
3
+ "version": "1.1.52",
4
4
  "types": "./build/index.d.ts",
5
5
  "description": "Shared componenets, utils, hooks",
6
6
  "scripts": {