@zenpatient-org/healthspan-marketing-ui 0.1.52 → 0.1.53
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.
- package/dist/healthspan-marketing-ui.css +1 -1
- package/dist/modules/CircleHighlights/CircleHighlights.cjs.js +1 -0
- package/dist/{components → modules}/CircleHighlights/CircleHighlights.es.js +1 -1
- package/dist/modules/CircleHighlights/circleHighlights.module.css.cjs.js +1 -0
- package/dist/modules/CircleHighlights/circleHighlights.module.css.es.js +19 -0
- package/package.json +6 -6
- package/dist/components/CircleHighlights/CircleHighlights.cjs.js +0 -1
- package/dist/components/CircleHighlights/circleHighlights.module.css.cjs.js +0 -1
- package/dist/components/CircleHighlights/circleHighlights.module.css.es.js +0 -19
- /package/dist/{components → modules}/CircleHighlights/CircleHighlights.d.ts +0 -0
- /package/dist/{components → modules}/CircleHighlights/index.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),i=require("../../components/Typography/Typography.cjs.js"),a=require("./circleHighlights.module.css.cjs.js"),t=({highlights:s})=>e.jsx("div",{className:a.default.root,children:e.jsx("div",{className:a.default.wrapper,children:s.map((l,r)=>e.jsxs("div",{className:a.default.highlight,children:[e.jsx("div",{className:a.default.image,style:{backgroundImage:`url(${l.image})`},"aria-label":l.title}),e.jsxs("div",{className:a.default.content,children:[e.jsx(i.Typography,{as:"h3",defaultVariant:"headingLg",className:a.default.title,children:l.title}),e.jsx(i.Typography,{as:"p",defaultVariant:"bodyMd",className:a.default.description,children:l.description})]})]},r))})});exports.CircleHighlights=t;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as e, jsxs as r } from "react/jsx-runtime";
|
|
2
|
-
import { Typography as l } from "
|
|
2
|
+
import { Typography as l } from "../../components/Typography/Typography.es.js";
|
|
3
3
|
import a from "./circleHighlights.module.css.es.js";
|
|
4
4
|
const o = ({ highlights: s }) => /* @__PURE__ */ e("div", { className: a.root, children: /* @__PURE__ */ e("div", { className: a.wrapper, children: s.map((i, t) => /* @__PURE__ */ r("div", { className: a.highlight, children: [
|
|
5
5
|
/* @__PURE__ */ e(
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const t="circleHighlights-module__root___gt2-N",e="circleHighlights-module__title___gslkF",i="circleHighlights-module__wrapper___zoBO7",l="circleHighlights-module__highlight___waeQg",o="circleHighlights-module__image___uTjMm",_="circleHighlights-module__content___KVGXh",c="circleHighlights-module__description___CIxXE",g={root:t,title:e,wrapper:i,highlight:l,image:o,content:_,description:c};exports.content=_;exports.default=g;exports.description=c;exports.highlight=l;exports.image=o;exports.root=t;exports.title=e;exports.wrapper=i;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
const t = "circleHighlights-module__root___gt2-N", i = "circleHighlights-module__title___gslkF", _ = "circleHighlights-module__wrapper___zoBO7", e = "circleHighlights-module__highlight___waeQg", l = "circleHighlights-module__image___uTjMm", o = "circleHighlights-module__content___KVGXh", c = "circleHighlights-module__description___CIxXE", g = {
|
|
2
|
+
root: t,
|
|
3
|
+
title: i,
|
|
4
|
+
wrapper: _,
|
|
5
|
+
highlight: e,
|
|
6
|
+
image: l,
|
|
7
|
+
content: o,
|
|
8
|
+
description: c
|
|
9
|
+
};
|
|
10
|
+
export {
|
|
11
|
+
o as content,
|
|
12
|
+
g as default,
|
|
13
|
+
c as description,
|
|
14
|
+
e as highlight,
|
|
15
|
+
l as image,
|
|
16
|
+
t as root,
|
|
17
|
+
i as title,
|
|
18
|
+
_ as wrapper
|
|
19
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenpatient-org/healthspan-marketing-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.53",
|
|
4
4
|
"description": "Design system",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -126,11 +126,6 @@
|
|
|
126
126
|
"import": "./dist/components/Button/Button.es.js",
|
|
127
127
|
"require": "./dist/components/Button/Button.cjs.js"
|
|
128
128
|
},
|
|
129
|
-
"./CircleHighlights": {
|
|
130
|
-
"types": "./dist/components/CircleHighlights/CircleHighlights.d.ts",
|
|
131
|
-
"import": "./dist/components/CircleHighlights/CircleHighlights.es.js",
|
|
132
|
-
"require": "./dist/components/CircleHighlights/CircleHighlights.cjs.js"
|
|
133
|
-
},
|
|
134
129
|
"./IconButton": {
|
|
135
130
|
"types": "./dist/components/IconButton/index.d.ts",
|
|
136
131
|
"import": "./dist/components/IconButton/IconButton.es.js",
|
|
@@ -321,6 +316,11 @@
|
|
|
321
316
|
"import": "./dist/modules/Comparison/Comparison.es.js",
|
|
322
317
|
"require": "./dist/modules/Comparison/Comparison.cjs.js"
|
|
323
318
|
},
|
|
319
|
+
"./CircleHighlights": {
|
|
320
|
+
"types": "./dist/modules/CircleHighlights/CircleHighlights.d.ts",
|
|
321
|
+
"import": "./dist/modules/CircleHighlights/CircleHighlights.es.js",
|
|
322
|
+
"require": "./dist/modules/CircleHighlights/CircleHighlights.cjs.js"
|
|
323
|
+
},
|
|
324
324
|
"./FeaturedIn": {
|
|
325
325
|
"types": "./dist/modules/FeaturedIn/FeaturedIn.d.ts",
|
|
326
326
|
"import": "./dist/modules/FeaturedIn/FeaturedIn.es.js",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),i=require("../Typography/Typography.cjs.js"),a=require("./circleHighlights.module.css.cjs.js"),t=({highlights:s})=>e.jsx("div",{className:a.default.root,children:e.jsx("div",{className:a.default.wrapper,children:s.map((l,r)=>e.jsxs("div",{className:a.default.highlight,children:[e.jsx("div",{className:a.default.image,style:{backgroundImage:`url(${l.image})`},"aria-label":l.title}),e.jsxs("div",{className:a.default.content,children:[e.jsx(i.Typography,{as:"h3",defaultVariant:"headingLg",className:a.default.title,children:l.title}),e.jsx(i.Typography,{as:"p",defaultVariant:"bodyMd",className:a.default.description,children:l.description})]})]},r))})});exports.CircleHighlights=t;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const t="circleHighlights-module__root___f3uIZ",i="circleHighlights-module__title___KQ7F1",e="circleHighlights-module__wrapper___GjEnG",l="circleHighlights-module__highlight___Z43RZ",o="circleHighlights-module__image___edhyl",_="circleHighlights-module__content___UqovH",c="circleHighlights-module__description___ihvCC",g={root:t,title:i,wrapper:e,highlight:l,image:o,content:_,description:c};exports.content=_;exports.default=g;exports.description=c;exports.highlight=l;exports.image=o;exports.root=t;exports.title=i;exports.wrapper=e;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
const i = "circleHighlights-module__root___f3uIZ", t = "circleHighlights-module__title___KQ7F1", _ = "circleHighlights-module__wrapper___GjEnG", e = "circleHighlights-module__highlight___Z43RZ", l = "circleHighlights-module__image___edhyl", o = "circleHighlights-module__content___UqovH", c = "circleHighlights-module__description___ihvCC", h = {
|
|
2
|
-
root: i,
|
|
3
|
-
title: t,
|
|
4
|
-
wrapper: _,
|
|
5
|
-
highlight: e,
|
|
6
|
-
image: l,
|
|
7
|
-
content: o,
|
|
8
|
-
description: c
|
|
9
|
-
};
|
|
10
|
-
export {
|
|
11
|
-
o as content,
|
|
12
|
-
h as default,
|
|
13
|
-
c as description,
|
|
14
|
-
e as highlight,
|
|
15
|
-
l as image,
|
|
16
|
-
i as root,
|
|
17
|
-
t as title,
|
|
18
|
-
_ as wrapper
|
|
19
|
-
};
|
|
File without changes
|
|
File without changes
|