@addsign/moje-agenda-shared-lib 1.0.4 → 1.0.6
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/assets/tailwind.css +3 -0
- package/dist/components/SpinnerIcon.d.ts +1 -1
- package/dist/components/SpinnerIcon.js.map +1 -1
- package/dist/components/datatable/DataTableServer.js +1 -1
- package/dist/components/datatable/DataTableServer.js.map +1 -1
- package/dist/main.d.ts +1 -0
- package/dist/main.js +2 -0
- package/dist/main.js.map +1 -1
- package/dist/utils/handleErrors.js +7 -3
- package/dist/utils/handleErrors.js.map +1 -1
- package/package.json +1 -1
package/dist/assets/tailwind.css
CHANGED
|
@@ -1813,6 +1813,9 @@ video {
|
|
|
1813
1813
|
--tw-ordinal: ordinal;
|
|
1814
1814
|
font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
|
|
1815
1815
|
}
|
|
1816
|
+
.\!leading-9 {
|
|
1817
|
+
line-height: 2.25rem !important;
|
|
1818
|
+
}
|
|
1816
1819
|
.leading-5 {
|
|
1817
1820
|
line-height: 1.25rem;
|
|
1818
1821
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SpinnerIcon.js","sources":["../../lib/components/SpinnerIcon.tsx"],"sourcesContent":["import React from \"react\";\nimport { FaSpinner } from \"react-icons/fa\";\n\ntype SpinnerIconProps = {\n icon
|
|
1
|
+
{"version":3,"file":"SpinnerIcon.js","sources":["../../lib/components/SpinnerIcon.tsx"],"sourcesContent":["import React from \"react\";\nimport { FaSpinner } from \"react-icons/fa\";\n\ntype SpinnerIconProps = {\n icon?: React.ReactNode;\n};\n\nconst SpinnerIcon: React.FC<SpinnerIconProps> = ({ icon = <FaSpinner /> }) => {\n return <div className=\"animate-spin\">{icon}</div>;\n};\n\nexport default SpinnerIcon;\n"],"names":[],"mappings":";;AAOA,MAAM,cAA0C,CAAC,EAAE,OAAQ,oBAAA,WAAA,CAAU,CAAA,QAAS;AAC5E,SAAQ,oBAAA,OAAA,EAAI,WAAU,gBAAgB,UAAK,KAAA,CAAA;AAC7C;"}
|
|
@@ -22061,7 +22061,7 @@ function DataTableServer({
|
|
|
22061
22061
|
children: ({ ref }) => /* @__PURE__ */ jsxs(
|
|
22062
22062
|
"th",
|
|
22063
22063
|
{
|
|
22064
|
-
className: `tableHeader relative font-medium leading-9 text-
|
|
22064
|
+
className: `tableHeader relative font-medium text-xs !leading-9 text-left px-3 text-gray-600
|
|
22065
22065
|
bg-gray-50 border-t border-b border-gray-200 content-start ${!title && !subtitle ? "border-t-0" : ""} ${sortParam ? " cursor-pointer " : ""}`,
|
|
22066
22066
|
onClick: () => sortParam ? requestSort(sortParam) : void 0,
|
|
22067
22067
|
children: [
|