@appcorp/app-corp-vista 0.2.83 → 0.2.84

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.
@@ -7,8 +7,8 @@ exports.VistaFeatureV1 = void 0;
7
7
  var react_1 = __importDefault(require("react"));
8
8
  var image_1 = __importDefault(require("next/image"));
9
9
  var VistaFeatureV1 = function (_a) {
10
- var description = _a.description, imageAlt = _a.imageAlt, imageSrc = _a.imageSrc, items = _a.items, _b = _a.revert, revert = _b === void 0 ? false : _b, subTitle = _a.subTitle, title = _a.title;
11
- return (react_1.default.createElement("div", { className: "overflow-hidden bg-gray-900 py-24 sm:py-32" },
10
+ var _b = _a.containerClassName, containerClassName = _b === void 0 ? '' : _b, description = _a.description, imageAlt = _a.imageAlt, imageSrc = _a.imageSrc, items = _a.items, _c = _a.revert, revert = _c === void 0 ? false : _c, subTitle = _a.subTitle, title = _a.title;
11
+ return (react_1.default.createElement("div", { className: "overflow-hidden bg-gray-900 py-24 sm:py-32 ".concat(containerClassName) },
12
12
  react_1.default.createElement("div", { className: "mx-auto max-w-7xl px-6 lg:px-8" },
13
13
  react_1.default.createElement("div", { className: "mx-auto grid max-w-2xl grid-cols-1 gap-x-8 gap-y-16 sm:gap-y-20 lg:mx-0 lg:max-w-none lg:grid-cols-2" },
14
14
  react_1.default.createElement("div", { className: "lg:pt-4 lg:pr-8 w-full ".concat(revert ? 'order-2' : 'order-1') },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appcorp/app-corp-vista",
3
- "version": "0.2.83",
3
+ "version": "0.2.84",
4
4
  "scripts": {
5
5
  "build": "yarn clean && yarn build:ts && cp package.json lib && cp README.md lib && cp yarn.lock lib",
6
6
  "build:next": "next build",
@@ -7,6 +7,7 @@ export interface VistaFeatureV1Item {
7
7
  order: number;
8
8
  }
9
9
  export interface VistaFeatureV1Props {
10
+ containerClassName?: string;
10
11
  description: string;
11
12
  imageAlt: string;
12
13
  imageSrc: string;