mogh_ui 1.2.5 → 1.2.7
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/components/list-pagination.cjs +54 -0
- package/dist/components/list-pagination.cjs.map +1 -0
- package/dist/components/list-pagination.d.ts +13 -0
- package/dist/components/list-pagination.d.ts.map +1 -0
- package/dist/components/list-pagination.js +30 -0
- package/dist/components/list-pagination.js.map +1 -0
- package/dist/components/page-breadcrumbs.cjs +2 -2
- package/dist/components/page-breadcrumbs.cjs.map +1 -1
- package/dist/components/page-breadcrumbs.js +2 -2
- package/dist/components/page-breadcrumbs.js.map +1 -1
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var list_pagination_exports = {};
|
|
20
|
+
__export(list_pagination_exports, {
|
|
21
|
+
ListPagination: () => ListPagination
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(list_pagination_exports);
|
|
24
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
|
+
var import_core = require("@mantine/core");
|
|
26
|
+
function ListPagination({
|
|
27
|
+
page,
|
|
28
|
+
setPage,
|
|
29
|
+
count,
|
|
30
|
+
pageSize,
|
|
31
|
+
...props
|
|
32
|
+
}) {
|
|
33
|
+
if (count < pageSize && page === 0) return null;
|
|
34
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
35
|
+
import_core.Pagination.Root,
|
|
36
|
+
{
|
|
37
|
+
total: count >= pageSize ? page + 2 : page + 1,
|
|
38
|
+
value: page + 1,
|
|
39
|
+
onChange: (page2) => setPage(page2 - 1),
|
|
40
|
+
...props,
|
|
41
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_core.Group, { gap: "0.2rem", justify: "center", children: [
|
|
42
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_core.Pagination.First, {}),
|
|
43
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_core.Pagination.Previous, {}),
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_core.Pagination.Items, {}),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_core.Pagination.Next, {})
|
|
46
|
+
] })
|
|
47
|
+
}
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {
|
|
52
|
+
ListPagination
|
|
53
|
+
});
|
|
54
|
+
//# sourceMappingURL=list-pagination.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/components/list-pagination.tsx"],"sourcesContent":["import { Group, Pagination, PaginationRootProps } from \"@mantine/core\";\n\nexport interface ListPaginationProps extends Omit<\n Omit<Omit<PaginationRootProps, \"total\">, \"value\">,\n \"onChange\"\n> {\n page: number;\n setPage: (page: number) => void;\n count: number;\n /** The number of entries in a full page */\n pageSize: number;\n}\n\n/**\n * Pagination controls for list calls.\n */\nexport function ListPagination({\n page,\n setPage,\n count,\n pageSize,\n ...props\n}: ListPaginationProps) {\n if (count < pageSize && page === 0) return null;\n return (\n <Pagination.Root\n total={count >= pageSize ? page + 2 : page + 1}\n value={page + 1}\n onChange={(page) => setPage(page - 1)}\n {...props}\n >\n <Group gap=\"0.2rem\" justify=\"center\">\n <Pagination.First />\n <Pagination.Previous />\n <Pagination.Items />\n <Pagination.Next />\n </Group>\n </Pagination.Root>\n );\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AA+BM;AA/BN,kBAAuD;AAgBhD,SAAS,eAAe;AAAA,EAC7B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA,GAAG;AACL,GAAwB;AACtB,MAAI,QAAQ,YAAY,SAAS,EAAG,QAAO;AAC3C,SACE;AAAA,IAAC,uBAAW;AAAA,IAAX;AAAA,MACC,OAAO,SAAS,WAAW,OAAO,IAAI,OAAO;AAAA,MAC7C,OAAO,OAAO;AAAA,MACd,UAAU,CAACA,UAAS,QAAQA,QAAO,CAAC;AAAA,MACnC,GAAG;AAAA,MAEJ,uDAAC,qBAAM,KAAI,UAAS,SAAQ,UAC1B;AAAA,oDAAC,uBAAW,OAAX,EAAiB;AAAA,QAClB,4CAAC,uBAAW,UAAX,EAAoB;AAAA,QACrB,4CAAC,uBAAW,OAAX,EAAiB;AAAA,QAClB,4CAAC,uBAAW,MAAX,EAAgB;AAAA,SACnB;AAAA;AAAA,EACF;AAEJ;","names":["page"]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PaginationRootProps } from "@mantine/core";
|
|
2
|
+
export interface ListPaginationProps extends Omit<Omit<Omit<PaginationRootProps, "total">, "value">, "onChange"> {
|
|
3
|
+
page: number;
|
|
4
|
+
setPage: (page: number) => void;
|
|
5
|
+
count: number;
|
|
6
|
+
/** The number of entries in a full page */
|
|
7
|
+
pageSize: number;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Pagination controls for list calls.
|
|
11
|
+
*/
|
|
12
|
+
export declare function ListPagination({ page, setPage, count, pageSize, ...props }: ListPaginationProps): import("react").JSX.Element | null;
|
|
13
|
+
//# sourceMappingURL=list-pagination.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-pagination.d.ts","sourceRoot":"","sources":["../../src/components/list-pagination.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAqB,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAEvE,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAC/C,IAAI,CAAC,IAAI,CAAC,mBAAmB,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,EACjD,UAAU,CACX;IACC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,2CAA2C;IAC3C,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,EAC7B,IAAI,EACJ,OAAO,EACP,KAAK,EACL,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,mBAAmB,sCAiBrB"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Group, Pagination } from "@mantine/core";
|
|
3
|
+
function ListPagination({
|
|
4
|
+
page,
|
|
5
|
+
setPage,
|
|
6
|
+
count,
|
|
7
|
+
pageSize,
|
|
8
|
+
...props
|
|
9
|
+
}) {
|
|
10
|
+
if (count < pageSize && page === 0) return null;
|
|
11
|
+
return /* @__PURE__ */ jsx(
|
|
12
|
+
Pagination.Root,
|
|
13
|
+
{
|
|
14
|
+
total: count >= pageSize ? page + 2 : page + 1,
|
|
15
|
+
value: page + 1,
|
|
16
|
+
onChange: (page2) => setPage(page2 - 1),
|
|
17
|
+
...props,
|
|
18
|
+
children: /* @__PURE__ */ jsxs(Group, { gap: "0.2rem", justify: "center", children: [
|
|
19
|
+
/* @__PURE__ */ jsx(Pagination.First, {}),
|
|
20
|
+
/* @__PURE__ */ jsx(Pagination.Previous, {}),
|
|
21
|
+
/* @__PURE__ */ jsx(Pagination.Items, {}),
|
|
22
|
+
/* @__PURE__ */ jsx(Pagination.Next, {})
|
|
23
|
+
] })
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
export {
|
|
28
|
+
ListPagination
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=list-pagination.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/components/list-pagination.tsx"],"sourcesContent":["import { Group, Pagination, PaginationRootProps } from \"@mantine/core\";\n\nexport interface ListPaginationProps extends Omit<\n Omit<Omit<PaginationRootProps, \"total\">, \"value\">,\n \"onChange\"\n> {\n page: number;\n setPage: (page: number) => void;\n count: number;\n /** The number of entries in a full page */\n pageSize: number;\n}\n\n/**\n * Pagination controls for list calls.\n */\nexport function ListPagination({\n page,\n setPage,\n count,\n pageSize,\n ...props\n}: ListPaginationProps) {\n if (count < pageSize && page === 0) return null;\n return (\n <Pagination.Root\n total={count >= pageSize ? page + 2 : page + 1}\n value={page + 1}\n onChange={(page) => setPage(page - 1)}\n {...props}\n >\n <Group gap=\"0.2rem\" justify=\"center\">\n <Pagination.First />\n <Pagination.Previous />\n <Pagination.Items />\n <Pagination.Next />\n </Group>\n </Pagination.Root>\n );\n}\n"],"mappings":"AA+BM,SACE,KADF;AA/BN,SAAS,OAAO,kBAAuC;AAgBhD,SAAS,eAAe;AAAA,EAC7B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA,GAAG;AACL,GAAwB;AACtB,MAAI,QAAQ,YAAY,SAAS,EAAG,QAAO;AAC3C,SACE;AAAA,IAAC,WAAW;AAAA,IAAX;AAAA,MACC,OAAO,SAAS,WAAW,OAAO,IAAI,OAAO;AAAA,MAC7C,OAAO,OAAO;AAAA,MACd,UAAU,CAACA,UAAS,QAAQA,QAAO,CAAC;AAAA,MACnC,GAAG;AAAA,MAEJ,+BAAC,SAAM,KAAI,UAAS,SAAQ,UAC1B;AAAA,4BAAC,WAAW,OAAX,EAAiB;AAAA,QAClB,oBAAC,WAAW,UAAX,EAAoB;AAAA,QACrB,oBAAC,WAAW,OAAX,EAAiB;AAAA,QAClB,oBAAC,WAAW,MAAX,EAAgB;AAAA,SACnB;AAAA;AAAA,EACF;AAEJ;","names":["page"]}
|
|
@@ -35,7 +35,7 @@ function PageBreadcrumbs({
|
|
|
35
35
|
{
|
|
36
36
|
className: "hover-underline",
|
|
37
37
|
c: "dimmed",
|
|
38
|
-
fz: "
|
|
38
|
+
fz: "md",
|
|
39
39
|
maw: 200,
|
|
40
40
|
truncate: true,
|
|
41
41
|
renderRoot: (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_router_dom.Link, { to, ...props }),
|
|
@@ -47,7 +47,7 @@ function PageBreadcrumbs({
|
|
|
47
47
|
) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
48
48
|
import_core.Text,
|
|
49
49
|
{
|
|
50
|
-
fz: "
|
|
50
|
+
fz: "md",
|
|
51
51
|
maw: 200,
|
|
52
52
|
truncate: true,
|
|
53
53
|
...commonTextProps,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/components/page-breadcrumbs.tsx"],"sourcesContent":["import { Breadcrumbs, BreadcrumbsProps, Text, TextProps } from \"@mantine/core\";\nimport { ReactNode } from \"react\";\nimport { Link } from \"react-router-dom\";\n\nexport interface Crumb extends TextProps {\n label: ReactNode;\n to?: string;\n}\n\nexport interface PageBreadcrumbsProps extends Omit<\n BreadcrumbsProps,\n \"children\"\n> {\n items: Crumb[];\n commonTextProps?: TextProps;\n}\n\nexport function PageBreadcrumbs({\n items,\n commonTextProps,\n ...breadcrumbsProps\n}: PageBreadcrumbsProps) {\n return (\n <Breadcrumbs separatorMargin=\"xs\" visibleFrom=\"sm\" {...breadcrumbsProps}>\n {items.map(({ label, to, ...textProps }, i) =>\n to ? (\n <Text\n key={i}\n className=\"hover-underline\"\n c=\"dimmed\"\n fz=\"
|
|
1
|
+
{"version":3,"sources":["../../src/components/page-breadcrumbs.tsx"],"sourcesContent":["import { Breadcrumbs, BreadcrumbsProps, Text, TextProps } from \"@mantine/core\";\nimport { ReactNode } from \"react\";\nimport { Link } from \"react-router-dom\";\n\nexport interface Crumb extends TextProps {\n label: ReactNode;\n to?: string;\n}\n\nexport interface PageBreadcrumbsProps extends Omit<\n BreadcrumbsProps,\n \"children\"\n> {\n items: Crumb[];\n commonTextProps?: TextProps;\n}\n\nexport function PageBreadcrumbs({\n items,\n commonTextProps,\n ...breadcrumbsProps\n}: PageBreadcrumbsProps) {\n return (\n <Breadcrumbs separatorMargin=\"xs\" visibleFrom=\"sm\" {...breadcrumbsProps}>\n {items.map(({ label, to, ...textProps }, i) =>\n to ? (\n <Text\n key={i}\n className=\"hover-underline\"\n c=\"dimmed\"\n fz=\"md\"\n maw={200}\n truncate\n renderRoot={(props) => <Link to={to} {...props} />}\n {...commonTextProps}\n {...textProps}\n >\n {label}\n </Text>\n ) : (\n <Text\n key={i}\n fz=\"md\"\n maw={200}\n truncate\n {...commonTextProps}\n {...textProps}\n >\n {label}\n </Text>\n ),\n )}\n </Breadcrumbs>\n );\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAiCmC;AAjCnC,kBAA+D;AAE/D,8BAAqB;AAed,SAAS,gBAAgB;AAAA,EAC9B;AAAA,EACA;AAAA,EACA,GAAG;AACL,GAAyB;AACvB,SACE,4CAAC,2BAAY,iBAAgB,MAAK,aAAY,MAAM,GAAG,kBACpD,gBAAM;AAAA,IAAI,CAAC,EAAE,OAAO,IAAI,GAAG,UAAU,GAAG,MACvC,KACE;AAAA,MAAC;AAAA;AAAA,QAEC,WAAU;AAAA,QACV,GAAE;AAAA,QACF,IAAG;AAAA,QACH,KAAK;AAAA,QACL,UAAQ;AAAA,QACR,YAAY,CAAC,UAAU,4CAAC,gCAAK,IAAS,GAAG,OAAO;AAAA,QAC/C,GAAG;AAAA,QACH,GAAG;AAAA,QAEH;AAAA;AAAA,MAVI;AAAA,IAWP,IAEA;AAAA,MAAC;AAAA;AAAA,QAEC,IAAG;AAAA,QACH,KAAK;AAAA,QACL,UAAQ;AAAA,QACP,GAAG;AAAA,QACH,GAAG;AAAA,QAEH;AAAA;AAAA,MAPI;AAAA,IAQP;AAAA,EAEJ,GACF;AAEJ;","names":[]}
|
|
@@ -12,7 +12,7 @@ function PageBreadcrumbs({
|
|
|
12
12
|
{
|
|
13
13
|
className: "hover-underline",
|
|
14
14
|
c: "dimmed",
|
|
15
|
-
fz: "
|
|
15
|
+
fz: "md",
|
|
16
16
|
maw: 200,
|
|
17
17
|
truncate: true,
|
|
18
18
|
renderRoot: (props) => /* @__PURE__ */ jsx(Link, { to, ...props }),
|
|
@@ -24,7 +24,7 @@ function PageBreadcrumbs({
|
|
|
24
24
|
) : /* @__PURE__ */ jsx(
|
|
25
25
|
Text,
|
|
26
26
|
{
|
|
27
|
-
fz: "
|
|
27
|
+
fz: "md",
|
|
28
28
|
maw: 200,
|
|
29
29
|
truncate: true,
|
|
30
30
|
...commonTextProps,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/components/page-breadcrumbs.tsx"],"sourcesContent":["import { Breadcrumbs, BreadcrumbsProps, Text, TextProps } from \"@mantine/core\";\nimport { ReactNode } from \"react\";\nimport { Link } from \"react-router-dom\";\n\nexport interface Crumb extends TextProps {\n label: ReactNode;\n to?: string;\n}\n\nexport interface PageBreadcrumbsProps extends Omit<\n BreadcrumbsProps,\n \"children\"\n> {\n items: Crumb[];\n commonTextProps?: TextProps;\n}\n\nexport function PageBreadcrumbs({\n items,\n commonTextProps,\n ...breadcrumbsProps\n}: PageBreadcrumbsProps) {\n return (\n <Breadcrumbs separatorMargin=\"xs\" visibleFrom=\"sm\" {...breadcrumbsProps}>\n {items.map(({ label, to, ...textProps }, i) =>\n to ? (\n <Text\n key={i}\n className=\"hover-underline\"\n c=\"dimmed\"\n fz=\"
|
|
1
|
+
{"version":3,"sources":["../../src/components/page-breadcrumbs.tsx"],"sourcesContent":["import { Breadcrumbs, BreadcrumbsProps, Text, TextProps } from \"@mantine/core\";\nimport { ReactNode } from \"react\";\nimport { Link } from \"react-router-dom\";\n\nexport interface Crumb extends TextProps {\n label: ReactNode;\n to?: string;\n}\n\nexport interface PageBreadcrumbsProps extends Omit<\n BreadcrumbsProps,\n \"children\"\n> {\n items: Crumb[];\n commonTextProps?: TextProps;\n}\n\nexport function PageBreadcrumbs({\n items,\n commonTextProps,\n ...breadcrumbsProps\n}: PageBreadcrumbsProps) {\n return (\n <Breadcrumbs separatorMargin=\"xs\" visibleFrom=\"sm\" {...breadcrumbsProps}>\n {items.map(({ label, to, ...textProps }, i) =>\n to ? (\n <Text\n key={i}\n className=\"hover-underline\"\n c=\"dimmed\"\n fz=\"md\"\n maw={200}\n truncate\n renderRoot={(props) => <Link to={to} {...props} />}\n {...commonTextProps}\n {...textProps}\n >\n {label}\n </Text>\n ) : (\n <Text\n key={i}\n fz=\"md\"\n maw={200}\n truncate\n {...commonTextProps}\n {...textProps}\n >\n {label}\n </Text>\n ),\n )}\n </Breadcrumbs>\n );\n}\n"],"mappings":"AAiCmC;AAjCnC,SAAS,aAA+B,YAAuB;AAE/D,SAAS,YAAY;AAed,SAAS,gBAAgB;AAAA,EAC9B;AAAA,EACA;AAAA,EACA,GAAG;AACL,GAAyB;AACvB,SACE,oBAAC,eAAY,iBAAgB,MAAK,aAAY,MAAM,GAAG,kBACpD,gBAAM;AAAA,IAAI,CAAC,EAAE,OAAO,IAAI,GAAG,UAAU,GAAG,MACvC,KACE;AAAA,MAAC;AAAA;AAAA,QAEC,WAAU;AAAA,QACV,GAAE;AAAA,QACF,IAAG;AAAA,QACH,KAAK;AAAA,QACL,UAAQ;AAAA,QACR,YAAY,CAAC,UAAU,oBAAC,QAAK,IAAS,GAAG,OAAO;AAAA,QAC/C,GAAG;AAAA,QACH,GAAG;AAAA,QAEH;AAAA;AAAA,MAVI;AAAA,IAWP,IAEA;AAAA,MAAC;AAAA;AAAA,QAEC,IAAG;AAAA,QACH,KAAK;AAAA,QACL,UAAQ;AAAA,QACP,GAAG;AAAA,QACH,GAAG;AAAA,QAEH;AAAA;AAAA,MAPI;AAAA,IAQP;AAAA,EAEJ,GACF;AAEJ;","names":[]}
|
package/dist/index.cjs
CHANGED
|
@@ -42,6 +42,7 @@ __reExport(index_exports, require("./components/info-card"), module.exports);
|
|
|
42
42
|
__reExport(index_exports, require("./components/input-list"), module.exports);
|
|
43
43
|
__reExport(index_exports, require("./components/labelled-switch"), module.exports);
|
|
44
44
|
__reExport(index_exports, require("./components/labels-group"), module.exports);
|
|
45
|
+
__reExport(index_exports, require("./components/list-pagination"), module.exports);
|
|
45
46
|
__reExport(index_exports, require("./components/loading-screen"), module.exports);
|
|
46
47
|
__reExport(index_exports, require("./components/mobile-friendly-tabs"), module.exports);
|
|
47
48
|
__reExport(index_exports, require("./components/page-breadcrumbs"), module.exports);
|
|
@@ -87,6 +88,7 @@ __reExport(index_exports, require("./components/theme-toggle"), module.exports);
|
|
|
87
88
|
...require("./components/input-list"),
|
|
88
89
|
...require("./components/labelled-switch"),
|
|
89
90
|
...require("./components/labels-group"),
|
|
91
|
+
...require("./components/list-pagination"),
|
|
90
92
|
...require("./components/loading-screen"),
|
|
91
93
|
...require("./components/mobile-friendly-tabs"),
|
|
92
94
|
...require("./components/page-breadcrumbs"),
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export * from \"./auth\";\nexport * from \"./color\";\nexport * from \"./formatting\";\nexport * from \"./hooks\";\nexport * from \"./theme\";\nexport * from \"./utils\";\nexport * from \"./components/config\";\nexport * from \"./components/divided-children\";\nexport * from \"./components/fancy-card\";\nexport * from \"./components/monaco\";\nexport * from \"./components/back-button\";\nexport * from \"./components/button-link\";\nexport * from \"./components/confirm-button\";\nexport * from \"./components/confirm-icon\";\nexport * from \"./components/confirm-modal\";\nexport * from \"./components/copy-button\";\nexport * from \"./components/copy-text\";\nexport * from \"./components/create-modal\";\nexport * from \"./components/data-table\";\nexport * from \"./components/enable-switch\";\nexport * from \"./components/entity-header\";\nexport * from \"./components/entity-page\";\nexport * from \"./components/hover-error\";\nexport * from \"./components/info-card\";\nexport * from \"./components/input-list\";\nexport * from \"./components/labelled-switch\";\nexport * from \"./components/labels-group\";\nexport * from \"./components/loading-screen\";\nexport * from \"./components/mobile-friendly-tabs\";\nexport * from \"./components/page-breadcrumbs\";\nexport * from \"./components/page-guard\";\nexport * from \"./components/page\";\nexport * from \"./components/search-input\";\nexport * from \"./components/section\";\nexport * from \"./components/shared-text-update\";\nexport * from \"./components/show-hide-button\";\nexport * from \"./components/stat-bar\";\nexport * from \"./components/stat-cell\";\nexport * from \"./components/status-badge\";\nexport * from \"./components/tabbed-page\";\nexport * from \"./components/table-skeleton\";\nexport * from \"./components/text-update-modal\";\nexport * from \"./components/theme-toggle\";\n"],"mappings":";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,0BAAc,mBAAd;AACA,0BAAc,oBADd;AAEA,0BAAc,yBAFd;AAGA,0BAAc,oBAHd;AAIA,0BAAc,oBAJd;AAKA,0BAAc,oBALd;AAMA,0BAAc,gCANd;AAOA,0BAAc,0CAPd;AAQA,0BAAc,oCARd;AASA,0BAAc,gCATd;AAUA,0BAAc,qCAVd;AAWA,0BAAc,qCAXd;AAYA,0BAAc,wCAZd;AAaA,0BAAc,sCAbd;AAcA,0BAAc,uCAdd;AAeA,0BAAc,qCAfd;AAgBA,0BAAc,mCAhBd;AAiBA,0BAAc,sCAjBd;AAkBA,0BAAc,oCAlBd;AAmBA,0BAAc,uCAnBd;AAoBA,0BAAc,uCApBd;AAqBA,0BAAc,qCArBd;AAsBA,0BAAc,qCAtBd;AAuBA,0BAAc,mCAvBd;AAwBA,0BAAc,oCAxBd;AAyBA,0BAAc,yCAzBd;AA0BA,0BAAc,sCA1Bd;AA2BA,0BAAc,
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export * from \"./auth\";\nexport * from \"./color\";\nexport * from \"./formatting\";\nexport * from \"./hooks\";\nexport * from \"./theme\";\nexport * from \"./utils\";\nexport * from \"./components/config\";\nexport * from \"./components/divided-children\";\nexport * from \"./components/fancy-card\";\nexport * from \"./components/monaco\";\nexport * from \"./components/back-button\";\nexport * from \"./components/button-link\";\nexport * from \"./components/confirm-button\";\nexport * from \"./components/confirm-icon\";\nexport * from \"./components/confirm-modal\";\nexport * from \"./components/copy-button\";\nexport * from \"./components/copy-text\";\nexport * from \"./components/create-modal\";\nexport * from \"./components/data-table\";\nexport * from \"./components/enable-switch\";\nexport * from \"./components/entity-header\";\nexport * from \"./components/entity-page\";\nexport * from \"./components/hover-error\";\nexport * from \"./components/info-card\";\nexport * from \"./components/input-list\";\nexport * from \"./components/labelled-switch\";\nexport * from \"./components/labels-group\";\nexport * from \"./components/list-pagination\";\nexport * from \"./components/loading-screen\";\nexport * from \"./components/mobile-friendly-tabs\";\nexport * from \"./components/page-breadcrumbs\";\nexport * from \"./components/page-guard\";\nexport * from \"./components/page\";\nexport * from \"./components/search-input\";\nexport * from \"./components/section\";\nexport * from \"./components/shared-text-update\";\nexport * from \"./components/show-hide-button\";\nexport * from \"./components/stat-bar\";\nexport * from \"./components/stat-cell\";\nexport * from \"./components/status-badge\";\nexport * from \"./components/tabbed-page\";\nexport * from \"./components/table-skeleton\";\nexport * from \"./components/text-update-modal\";\nexport * from \"./components/theme-toggle\";\n"],"mappings":";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,0BAAc,mBAAd;AACA,0BAAc,oBADd;AAEA,0BAAc,yBAFd;AAGA,0BAAc,oBAHd;AAIA,0BAAc,oBAJd;AAKA,0BAAc,oBALd;AAMA,0BAAc,gCANd;AAOA,0BAAc,0CAPd;AAQA,0BAAc,oCARd;AASA,0BAAc,gCATd;AAUA,0BAAc,qCAVd;AAWA,0BAAc,qCAXd;AAYA,0BAAc,wCAZd;AAaA,0BAAc,sCAbd;AAcA,0BAAc,uCAdd;AAeA,0BAAc,qCAfd;AAgBA,0BAAc,mCAhBd;AAiBA,0BAAc,sCAjBd;AAkBA,0BAAc,oCAlBd;AAmBA,0BAAc,uCAnBd;AAoBA,0BAAc,uCApBd;AAqBA,0BAAc,qCArBd;AAsBA,0BAAc,qCAtBd;AAuBA,0BAAc,mCAvBd;AAwBA,0BAAc,oCAxBd;AAyBA,0BAAc,yCAzBd;AA0BA,0BAAc,sCA1Bd;AA2BA,0BAAc,yCA3Bd;AA4BA,0BAAc,wCA5Bd;AA6BA,0BAAc,8CA7Bd;AA8BA,0BAAc,0CA9Bd;AA+BA,0BAAc,oCA/Bd;AAgCA,0BAAc,8BAhCd;AAiCA,0BAAc,sCAjCd;AAkCA,0BAAc,iCAlCd;AAmCA,0BAAc,4CAnCd;AAoCA,0BAAc,0CApCd;AAqCA,0BAAc,kCArCd;AAsCA,0BAAc,mCAtCd;AAuCA,0BAAc,sCAvCd;AAwCA,0BAAc,qCAxCd;AAyCA,0BAAc,wCAzCd;AA0CA,0BAAc,2CA1Cd;AA2CA,0BAAc,sCA3Cd;","names":[]}
|
package/dist/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export * from "./components/info-card";
|
|
|
25
25
|
export * from "./components/input-list";
|
|
26
26
|
export * from "./components/labelled-switch";
|
|
27
27
|
export * from "./components/labels-group";
|
|
28
|
+
export * from "./components/list-pagination";
|
|
28
29
|
export * from "./components/loading-screen";
|
|
29
30
|
export * from "./components/mobile-friendly-tabs";
|
|
30
31
|
export * from "./components/page-breadcrumbs";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,qBAAqB,CAAC;AACpC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yBAAyB,CAAC;AACxC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,qBAAqB,CAAC;AACpC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yBAAyB,CAAC;AACxC,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mCAAmC,CAAC;AAClD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -25,6 +25,7 @@ export * from "./components/info-card";
|
|
|
25
25
|
export * from "./components/input-list";
|
|
26
26
|
export * from "./components/labelled-switch";
|
|
27
27
|
export * from "./components/labels-group";
|
|
28
|
+
export * from "./components/list-pagination";
|
|
28
29
|
export * from "./components/loading-screen";
|
|
29
30
|
export * from "./components/mobile-friendly-tabs";
|
|
30
31
|
export * from "./components/page-breadcrumbs";
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export * from \"./auth\";\nexport * from \"./color\";\nexport * from \"./formatting\";\nexport * from \"./hooks\";\nexport * from \"./theme\";\nexport * from \"./utils\";\nexport * from \"./components/config\";\nexport * from \"./components/divided-children\";\nexport * from \"./components/fancy-card\";\nexport * from \"./components/monaco\";\nexport * from \"./components/back-button\";\nexport * from \"./components/button-link\";\nexport * from \"./components/confirm-button\";\nexport * from \"./components/confirm-icon\";\nexport * from \"./components/confirm-modal\";\nexport * from \"./components/copy-button\";\nexport * from \"./components/copy-text\";\nexport * from \"./components/create-modal\";\nexport * from \"./components/data-table\";\nexport * from \"./components/enable-switch\";\nexport * from \"./components/entity-header\";\nexport * from \"./components/entity-page\";\nexport * from \"./components/hover-error\";\nexport * from \"./components/info-card\";\nexport * from \"./components/input-list\";\nexport * from \"./components/labelled-switch\";\nexport * from \"./components/labels-group\";\nexport * from \"./components/loading-screen\";\nexport * from \"./components/mobile-friendly-tabs\";\nexport * from \"./components/page-breadcrumbs\";\nexport * from \"./components/page-guard\";\nexport * from \"./components/page\";\nexport * from \"./components/search-input\";\nexport * from \"./components/section\";\nexport * from \"./components/shared-text-update\";\nexport * from \"./components/show-hide-button\";\nexport * from \"./components/stat-bar\";\nexport * from \"./components/stat-cell\";\nexport * from \"./components/status-badge\";\nexport * from \"./components/tabbed-page\";\nexport * from \"./components/table-skeleton\";\nexport * from \"./components/text-update-modal\";\nexport * from \"./components/theme-toggle\";\n"],"mappings":"AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export * from \"./auth\";\nexport * from \"./color\";\nexport * from \"./formatting\";\nexport * from \"./hooks\";\nexport * from \"./theme\";\nexport * from \"./utils\";\nexport * from \"./components/config\";\nexport * from \"./components/divided-children\";\nexport * from \"./components/fancy-card\";\nexport * from \"./components/monaco\";\nexport * from \"./components/back-button\";\nexport * from \"./components/button-link\";\nexport * from \"./components/confirm-button\";\nexport * from \"./components/confirm-icon\";\nexport * from \"./components/confirm-modal\";\nexport * from \"./components/copy-button\";\nexport * from \"./components/copy-text\";\nexport * from \"./components/create-modal\";\nexport * from \"./components/data-table\";\nexport * from \"./components/enable-switch\";\nexport * from \"./components/entity-header\";\nexport * from \"./components/entity-page\";\nexport * from \"./components/hover-error\";\nexport * from \"./components/info-card\";\nexport * from \"./components/input-list\";\nexport * from \"./components/labelled-switch\";\nexport * from \"./components/labels-group\";\nexport * from \"./components/list-pagination\";\nexport * from \"./components/loading-screen\";\nexport * from \"./components/mobile-friendly-tabs\";\nexport * from \"./components/page-breadcrumbs\";\nexport * from \"./components/page-guard\";\nexport * from \"./components/page\";\nexport * from \"./components/search-input\";\nexport * from \"./components/section\";\nexport * from \"./components/shared-text-update\";\nexport * from \"./components/show-hide-button\";\nexport * from \"./components/stat-bar\";\nexport * from \"./components/stat-cell\";\nexport * from \"./components/status-badge\";\nexport * from \"./components/tabbed-page\";\nexport * from \"./components/table-skeleton\";\nexport * from \"./components/text-update-modal\";\nexport * from \"./components/theme-toggle\";\n"],"mappings":"AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
|