@luscii-healthtech/web-ui 42.3.0 → 42.4.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 +49 -11
- 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/VerticalMenu/VerticalMenu.d.ts +1 -1
- package/dist/stories/VerticalMenu.stories.d.ts +1 -1
- package/dist/web-ui-tailwind.css +28 -2
- package/dist/web-ui.esm.js +1 -1
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -116,7 +116,7 @@ declare function MenuItemNotificationBubble(props: Readonly<{
|
|
|
116
116
|
className?: string;
|
|
117
117
|
}>): import("react/jsx-runtime").JSX.Element;
|
|
118
118
|
declare function MenuDivider(props: ComponentPropsWithoutRef<typeof Divider>): import("react/jsx-runtime").JSX.Element;
|
|
119
|
-
declare function MenuItemGroup({ title, children, ...rest }: ComponentPropsWithoutRef<typeof DetailsDisclosure> & {
|
|
119
|
+
declare function MenuItemGroup({ title, children, className, ...rest }: ComponentPropsWithoutRef<typeof DetailsDisclosure> & {
|
|
120
120
|
title: ReactNode;
|
|
121
121
|
}): import("react/jsx-runtime").JSX.Element;
|
|
122
122
|
declare function SectionTitle(props: {
|
|
@@ -69,7 +69,7 @@ declare const meta: {
|
|
|
69
69
|
children?: React.ReactNode;
|
|
70
70
|
className?: string;
|
|
71
71
|
}>) => import("react/jsx-runtime").JSX.Element;
|
|
72
|
-
ItemGroup: ({ title, children, ...rest }: React.ComponentPropsWithoutRef<typeof import("../src").DetailsDisclosure> & {
|
|
72
|
+
ItemGroup: ({ title, children, className, ...rest }: React.ComponentPropsWithoutRef<typeof import("../src").DetailsDisclosure> & {
|
|
73
73
|
title: React.ReactNode;
|
|
74
74
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
75
75
|
SectionTitle: (props: {
|
package/dist/web-ui-tailwind.css
CHANGED
|
@@ -333,8 +333,8 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
333
333
|
.ui\:right-3 {
|
|
334
334
|
right: 0.75rem;
|
|
335
335
|
}
|
|
336
|
-
.ui\:right-\[
|
|
337
|
-
right:
|
|
336
|
+
.ui\:right-\[16px\] {
|
|
337
|
+
right: 16px;
|
|
338
338
|
}
|
|
339
339
|
.ui\:right-l {
|
|
340
340
|
right: var(--ui-spacing-l);
|
|
@@ -1230,6 +1230,9 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
1230
1230
|
.ui\:max-w-7xl {
|
|
1231
1231
|
max-width: var(--ui-container-7xl);
|
|
1232
1232
|
}
|
|
1233
|
+
.ui\:max-w-18 {
|
|
1234
|
+
max-width: calc(var(--ui-spacing) * 18);
|
|
1235
|
+
}
|
|
1233
1236
|
.ui\:max-w-40 {
|
|
1234
1237
|
max-width: 10rem;
|
|
1235
1238
|
}
|
|
@@ -2754,6 +2757,9 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
2754
2757
|
.ui\:whitespace-pre {
|
|
2755
2758
|
white-space: pre;
|
|
2756
2759
|
}
|
|
2760
|
+
.ui\:text-\[\#162130\] {
|
|
2761
|
+
color: #162130;
|
|
2762
|
+
}
|
|
2757
2763
|
.ui\:text-amber-700 {
|
|
2758
2764
|
color: var(--ui-color-amber-700);
|
|
2759
2765
|
}
|
|
@@ -4447,6 +4453,12 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
4447
4453
|
line-height: var(--tw-leading, var(--ui-text-xs--line-height));
|
|
4448
4454
|
}
|
|
4449
4455
|
}
|
|
4456
|
+
.ui\:sm\:leading-\[16px\] {
|
|
4457
|
+
@media (width >= 40rem) {
|
|
4458
|
+
--tw-leading: 16px;
|
|
4459
|
+
line-height: 16px;
|
|
4460
|
+
}
|
|
4461
|
+
}
|
|
4450
4462
|
.ui\:sm\:leading-\[24px\] {
|
|
4451
4463
|
@media (width >= 40rem) {
|
|
4452
4464
|
--tw-leading: 24px;
|
|
@@ -4638,6 +4650,20 @@ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-se
|
|
|
4638
4650
|
}
|
|
4639
4651
|
}
|
|
4640
4652
|
}
|
|
4653
|
+
.ui\:\[\&_\.menu-icon\]\:text-\[\#3a4657\] {
|
|
4654
|
+
& .menu-icon {
|
|
4655
|
+
color: #3a4657;
|
|
4656
|
+
}
|
|
4657
|
+
}
|
|
4658
|
+
.ui\:hover\:\[\&_\.menu-icon\]\:text-\[\#162130\] {
|
|
4659
|
+
&:hover {
|
|
4660
|
+
@media (hover: hover) {
|
|
4661
|
+
& .menu-icon {
|
|
4662
|
+
color: #162130;
|
|
4663
|
+
}
|
|
4664
|
+
}
|
|
4665
|
+
}
|
|
4666
|
+
}
|
|
4641
4667
|
.ui\:\[\&_span\]\:font-bold {
|
|
4642
4668
|
& span {
|
|
4643
4669
|
--tw-font-weight: var(--ui-font-weight-bold);
|