@luscii-healthtech/web-ui 42.9.0 → 42.10.0
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/index.development.js +4 -1
- package/dist/index.development.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/components/Text/Text.d.ts +2 -0
- package/dist/stories/AsideLayout.stories.d.ts +1 -1
- package/dist/stories/DetailsDisclosure.stories.d.ts +449 -449
- package/dist/stories/Divider.stories.d.ts +4 -4
- package/dist/stories/HoverIndicatorControl.stories.d.ts +1 -1
- package/dist/stories/PageWithCenteredContentLayout.stories.d.ts +3 -3
- package/dist/stories/Section.stories.d.ts +1 -1
- package/dist/stories/SplitViewLayout.stories.d.ts +1 -1
- package/dist/stories/StyledOrderedList.stories.d.ts +1 -1
- package/dist/stories/StyledUnorderedList.stories.d.ts +1 -1
- package/dist/stories/Text.stories.d.ts +1 -0
- package/dist/stories/TimelineCardLayout.stories.d.ts +2 -2
- package/dist/stories/VerticalMenu.stories.d.ts +1 -1
- package/dist/web-ui-tailwind.css +15 -0
- package/dist/web-ui.esm.js +1 -1
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -238,10 +238,12 @@ var css_248z$h = "/* https://stackoverflow.com/a/13924997 */\n.ui\\:text-two-lin
|
|
|
238
238
|
styleInject(css_248z$h);
|
|
239
239
|
|
|
240
240
|
const responsiveTextSizeVariants = {
|
|
241
|
+
xs: "ui:text-[12px]",
|
|
241
242
|
sm: "ui:text-sm ui:sm:text-xs",
|
|
242
243
|
base: "ui:text-base ui:sm:text-sm"
|
|
243
244
|
};
|
|
244
245
|
const allowedTextStyles = {
|
|
246
|
+
xs: `${responsiveTextSizeVariants.xs} ui:font-[400] ui:leading-[16px]`,
|
|
245
247
|
sm: `${responsiveTextSizeVariants.sm} ui:font-medium`,
|
|
246
248
|
"sm-strong": `${responsiveTextSizeVariants.sm} ui:font-semibold ui:antialiased`,
|
|
247
249
|
base: `${responsiveTextSizeVariants.base} ui:font-normal`,
|
|
@@ -281,7 +283,8 @@ const allowedColors = {
|
|
|
281
283
|
"negative-solid": "ui:text-negative-solid",
|
|
282
284
|
"neutral-interactive": "ui:text-neutral-interactive",
|
|
283
285
|
primary: "ui:text-primary",
|
|
284
|
-
"primary-dark": "ui:text-primary-dark"
|
|
286
|
+
"primary-dark": "ui:text-primary-dark",
|
|
287
|
+
active: "ui:text-text-body-active"
|
|
285
288
|
};
|
|
286
289
|
const allowedHoverColors = {
|
|
287
290
|
"blue-900": "ui:hover:text-primary-dark",
|