@bahmni/appointments-app 0.0.1-dev.172

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.
@@ -0,0 +1,8 @@
1
+ import { jsxs as e, jsx as n } from "react/jsx-runtime";
2
+ const o = () => /* @__PURE__ */ e("div", { children: [
3
+ /* @__PURE__ */ n("h1", { children: "Welcome to Appointments" }),
4
+ /* @__PURE__ */ n("p", { children: "Appointments application for Bahmni" })
5
+ ] });
6
+ export {
7
+ o as IndexPage
8
+ };
package/dist/index.css ADDED
File without changes
@@ -0,0 +1,2 @@
1
+ export { default as AppointmentsApp } from './App';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,eAAe,CAAC;AAEvB,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,OAAO,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ import { ay as t } from "./index-BjYaBVts.js";
2
+ export {
3
+ t as AppointmentsApp
4
+ };
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1 @@
1
+ {}
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ export declare const IndexPage: React.FC;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/pages/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAO7B,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { Routes } from './model';
2
+ export declare const routes: Routes;
3
+ export declare const renderRoutes: (routeConfigs: Routes) => import("react/jsx-runtime").JSX.Element[];
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAe,MAAM,SAAS,CAAC;AAM9C,eAAO,MAAM,MAAM,EAAE,MAMpB,CAAC;AAEF,eAAO,MAAM,YAAY,GAAI,cAAc,MAAM,8CAOhD,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { ComponentType, LazyExoticComponent } from 'react';
2
+ export interface RouteConfig {
3
+ path: string;
4
+ component: LazyExoticComponent<ComponentType>;
5
+ name: string;
6
+ }
7
+ export type Routes = RouteConfig[];
8
+ //# sourceMappingURL=model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../src/routes/model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,OAAO,CAAC;AAE3D,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,mBAAmB,CAAC,aAAa,CAAC,CAAC;IAC9C,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,MAAM,MAAM,GAAG,WAAW,EAAE,CAAC"}
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@bahmni/appointments-app",
3
+ "version": "0.0.1-dev.172",
4
+ "type": "module",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ "./package.json": "./package.json",
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "./styles": "./dist/index.css",
16
+ "./locales/*": "./dist/locales/*"
17
+ },
18
+ "peerDependencies": {
19
+ "react": "^19.0.0",
20
+ "react-dom": "^19.0.0",
21
+ "react-router-dom": "^7.5.3"
22
+ },
23
+ "author": "Thoughtworks Inc.",
24
+ "license": "MPLv2",
25
+ "description": "A comprehensive appointments module for Bahmni, built with React and Bahmni Design System. Provides a complete EMR interface to view, create and manage appointments.",
26
+ "files": [
27
+ "dist",
28
+ "README.md",
29
+ "LICENSE"
30
+ ]
31
+ }