botc-character-sheet 0.17.1 → 0.18.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/FancyDoc.d.ts.map +1 -1
- package/dist/components/BottomTrimSheet.d.ts +10 -0
- package/dist/components/BottomTrimSheet.d.ts.map +1 -0
- package/dist/components/PlayerCount.d.ts +4 -1
- package/dist/components/PlayerCount.d.ts.map +1 -1
- package/dist/components/PrintGuides.d.ts +7 -0
- package/dist/components/PrintGuides.d.ts.map +1 -0
- package/dist/components/PrintablePage.d.ts +9 -0
- package/dist/components/PrintablePage.d.ts.map +1 -0
- package/dist/index.js +720 -471
- package/dist/pages/CharacterSection.d.ts +13 -0
- package/dist/pages/CharacterSection.d.ts.map +1 -0
- package/dist/pages/CharacterSheet.d.ts +3 -2
- package/dist/pages/CharacterSheet.d.ts.map +1 -1
- package/dist/pages/InfoSheet.d.ts +23 -0
- package/dist/pages/InfoSheet.d.ts.map +1 -0
- package/dist/pages/NightSheet.d.ts +2 -7
- package/dist/pages/NightSheet.d.ts.map +1 -1
- package/dist/pages/SheetBack.d.ts +7 -1
- package/dist/pages/SheetBack.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types.d.ts +8 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/FancyDoc.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FancyDoc.d.ts","sourceRoot":"","sources":["../src/FancyDoc.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAGnE,OAAO,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"FancyDoc.d.ts","sourceRoot":"","sources":["../src/FancyDoc.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAGnE,OAAO,gBAAgB,CAAC;AAIxB,MAAM,MAAM,aAAa,GAAG;IAC1B,MAAM,EAAE,YAAY,CAAC;IACrB,OAAO,EAAE,aAAa,CAAC;IACvB,WAAW,EAAE,WAAW,CAAC;CAC1B,CAAC;AAEF,wBAAgB,QAAQ,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,WAAW,EAAE,EAAE,aAAa,gCA8FvE"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ComponentChildren } from "preact";
|
|
2
|
+
import { PageDimensions } from "../types";
|
|
3
|
+
export type BottomTrimSheetProps = {
|
|
4
|
+
includeMargins: boolean;
|
|
5
|
+
color: string | string[];
|
|
6
|
+
dimensions: PageDimensions;
|
|
7
|
+
children: ComponentChildren;
|
|
8
|
+
};
|
|
9
|
+
export declare const BottomTrimSheet: (props: BottomTrimSheetProps) => import("preact").JSX.Element;
|
|
10
|
+
//# sourceMappingURL=BottomTrimSheet.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BottomTrimSheet.d.ts","sourceRoot":"","sources":["../../src/components/BottomTrimSheet.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,QAAQ,CAAC;AAM3C,OAAO,uBAAuB,CAAC;AAE/B,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAE1C,MAAM,MAAM,oBAAoB,GAAG;IACjC,cAAc,EAAE,OAAO,CAAC;IACxB,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IACzB,UAAU,EAAE,cAAc,CAAC;IAC3B,QAAQ,EAAE,iBAAiB,CAAC;CAC7B,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,OAAO,oBAAoB,iCAkC1D,CAAC"}
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type PlayerCountProps = {
|
|
2
|
+
background?: boolean;
|
|
3
|
+
};
|
|
4
|
+
export declare const PlayerCount: ({ background }: PlayerCountProps) => import("preact").JSX.Element;
|
|
2
5
|
//# sourceMappingURL=PlayerCount.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PlayerCount.d.ts","sourceRoot":"","sources":["../../src/components/PlayerCount.tsx"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,CAAC;AAgB3B,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"PlayerCount.d.ts","sourceRoot":"","sources":["../../src/components/PlayerCount.tsx"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,CAAC;AAgB3B,MAAM,MAAM,gBAAgB,GAAG;IAC7B,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,gBAAuB,gBAAgB,iCA2BlE,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PageDimensions } from "../types";
|
|
2
|
+
export type PrintGuidesProps = {
|
|
3
|
+
dimensions: PageDimensions;
|
|
4
|
+
position: "top-left" | "top-right" | "bottom-left" | "bottom-right";
|
|
5
|
+
};
|
|
6
|
+
export declare const PrintGuides: ({ dimensions, position }: PrintGuidesProps) => import("preact").JSX.Element;
|
|
7
|
+
//# sourceMappingURL=PrintGuides.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PrintGuides.d.ts","sourceRoot":"","sources":["../../src/components/PrintGuides.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAE1C,MAAM,MAAM,gBAAgB,GAAG;IAC7B,UAAU,EAAE,cAAc,CAAC;IAC3B,QAAQ,EAAE,UAAU,GAAG,WAAW,GAAG,aAAa,GAAG,cAAc,CAAC;CACrE,CAAC;AAYF,eAAO,MAAM,WAAW,GAAI,0BAA0B,gBAAgB,iCAmErE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ComponentChildren } from "preact";
|
|
2
|
+
import { PageDimensions } from "../types";
|
|
3
|
+
type PrintablePageProps = {
|
|
4
|
+
children: ComponentChildren;
|
|
5
|
+
dimensions: PageDimensions;
|
|
6
|
+
};
|
|
7
|
+
export declare const PrintablePage: (props: PrintablePageProps) => import("preact").JSX.Element;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=PrintablePage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PrintablePage.d.ts","sourceRoot":"","sources":["../../src/components/PrintablePage.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,QAAQ,CAAC;AAC3C,OAAO,qBAAqB,CAAC;AAE7B,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAE1C,KAAK,kBAAkB,GAAG;IACxB,QAAQ,EAAE,iBAAiB,CAAC;IAC5B,UAAU,EAAE,cAAc,CAAC;CAC5B,CAAC;AAIF,eAAO,MAAM,aAAa,GAAI,OAAO,kBAAkB,iCA2BtD,CAAC"}
|