@bahmni/design-system 0.0.1-dev.13 → 0.0.1-dev.49
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/LICENSE +1 -1
- package/README.md +5 -0
- package/dist/atoms/fileUploader/index.d.ts +7 -0
- package/dist/atoms/fileUploader/index.d.ts.map +1 -0
- package/dist/atoms/modal/index.d.ts +12 -0
- package/dist/atoms/modal/index.d.ts.map +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +22704 -20645
- package/dist/molecules/sortableDataTable/SortableDataTable.d.ts +1 -2
- package/dist/molecules/sortableDataTable/SortableDataTable.d.ts.map +1 -1
- package/package.json +1 -1
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -4,3 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
A reusable React component library built on [Carbon Design System](https://carbondesignsystem.com/), designed for building modern healthcare and enterprise web applications.
|
|
6
6
|
|
|
7
|
+
This library was generated with [Nx](https://nx.dev).
|
|
8
|
+
|
|
9
|
+
## Running unit tests
|
|
10
|
+
|
|
11
|
+
Run `nx test @bahmni/design-system` to execute the unit tests via [Vitest](https://vitest.dev/)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FileUploaderProps as CarbonFileUploaderProps } from '@carbon/react';
|
|
2
|
+
import { default as React } from 'react';
|
|
3
|
+
export type FileUploaderProps = CarbonFileUploaderProps & {
|
|
4
|
+
testId?: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const FileUploader: React.FC<FileUploaderProps>;
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/atoms/fileUploader/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,iBAAiB,IAAI,uBAAuB,EAC7C,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,MAAM,iBAAiB,GAAG,uBAAuB,GAAG;IACxD,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAUpD,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ModalProps as CarbonModalProps, ModalHeader, ModalBody, ModalFooter } from '@carbon/react';
|
|
2
|
+
import { default as React } from 'react';
|
|
3
|
+
export type ModalProps = CarbonModalProps & {
|
|
4
|
+
testId?: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const Modal: React.FC<ModalProps> & {
|
|
7
|
+
Header: typeof ModalHeader;
|
|
8
|
+
Body: typeof ModalBody;
|
|
9
|
+
Footer: typeof ModalFooter;
|
|
10
|
+
};
|
|
11
|
+
export { ModalHeader, ModalBody, ModalFooter };
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/atoms/modal/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,IAAI,gBAAgB,EAC9B,WAAW,EACX,SAAS,EACT,WAAW,EACZ,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,MAAM,UAAU,GAAG,gBAAgB,GAAG;IAC1C,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAAC,GAAG;IACzC,MAAM,EAAE,OAAO,WAAW,CAAC;IAC3B,IAAI,EAAE,OAAO,SAAS,CAAC;IACvB,MAAM,EAAE,OAAO,WAAW,CAAC;CAO5B,CAAC;AAOF,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,WAAW,EAAE,CAAC"}
|