allaw-ui 1.0.20 → 1.0.21
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.
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.tab-item.active {
|
|
25
|
-
border-bottom:
|
|
26
|
-
padding-bottom:
|
|
25
|
+
border-bottom: 3px solid #000;
|
|
26
|
+
padding-bottom: 10px;
|
|
27
27
|
color: var(--Primary-Mid-black, var(--primary-black, #171e25));
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
.tab-item.inactive {
|
|
31
|
-
border-bottom:
|
|
31
|
+
border-bottom: 3px solid var(--grey-venom, #e6edf5);
|
|
32
32
|
color: var(--Tags-Mid-grey, var(--light-grey, #728ea7));
|
|
33
33
|
}
|
|
34
34
|
|
package/dist/index.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ export { default as Select } from "./components/atoms/selects/Select";
|
|
|
23
23
|
export type { SelectItem, SelectProps, SelectRef, } from "./components/atoms/selects/Select";
|
|
24
24
|
export { default as ComboBox } from "./components/atoms/selects/ComboBox";
|
|
25
25
|
export type { ComboBoxProps, ComboBoxRef, } from "./components/atoms/selects/ComboBox";
|
|
26
|
+
export { default as Datepicker } from "./components/atoms/datepickers/Datepicker";
|
|
27
|
+
export type { DatepickerProps } from "./components/atoms/datepickers/Datepicker";
|
|
26
28
|
export { default as AppointementStatusTag } from "./components/atoms/tags/AppointementStatusTag";
|
|
27
29
|
export { default as FolderStatusTag } from "./components/atoms/tags/FolderStatusTag";
|
|
28
30
|
export { default as OtherStatusTag } from "./components/atoms/tags/OtherStatusTag";
|
package/dist/index.js
CHANGED
|
@@ -27,6 +27,8 @@ export { default as SingleFilter } from "./components/atoms/filters/SingleFilter
|
|
|
27
27
|
// Selects
|
|
28
28
|
export { default as Select } from "./components/atoms/selects/Select";
|
|
29
29
|
export { default as ComboBox } from "./components/atoms/selects/ComboBox";
|
|
30
|
+
// Datepickers
|
|
31
|
+
export { default as Datepicker } from "./components/atoms/datepickers/Datepicker";
|
|
30
32
|
// Tags
|
|
31
33
|
export { default as AppointementStatusTag } from "./components/atoms/tags/AppointementStatusTag";
|
|
32
34
|
export { default as FolderStatusTag } from "./components/atoms/tags/FolderStatusTag";
|
|
@@ -48,9 +50,9 @@ export { default as AppointmentSlot } from "./components/molecules/appointmentSl
|
|
|
48
50
|
export { default as CaseCard } from "./components/molecules/caseCard/CaseCard";
|
|
49
51
|
// Contact Card
|
|
50
52
|
export { default as ContactCard } from "./components/molecules/contactCard/ContactCard";
|
|
51
|
-
// Case Link Card
|
|
53
|
+
// Case Link Card
|
|
52
54
|
export { default as CaseCardLink } from "./components/molecules/caseLinkCard/CaseLinkCard";
|
|
53
|
-
// Case Link Card
|
|
55
|
+
// Case Link Card
|
|
54
56
|
export { default as ClientLinkCard } from "./components/molecules/clientLinkCard/ClientLinkCard";
|
|
55
57
|
export { default as LoadingBox } from "./components/molecules/loadingBox/LoadingBox";
|
|
56
58
|
// Document Card
|