@sudobility/legal-components 1.0.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/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # @sudobility/legal-components
2
+
3
+ Legal and compliance UI components for React
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @sudobility/legal-components
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```tsx
14
+ import { ComponentName } from '@sudobility/legal-components';
15
+
16
+ function App() {
17
+ return <ComponentName />;
18
+ }
19
+ ```
20
+
21
+ ## License
22
+
23
+ MIT
@@ -0,0 +1,19 @@
1
+ /**
2
+ * ClaimSubmission Component
3
+ *
4
+ * Insurance component with full dark mode support.
5
+ *
6
+ * @component
7
+ * @example
8
+ * ```tsx
9
+ * <ClaimSubmission className="custom-class" />
10
+ * ```
11
+ */
12
+ export interface ClaimSubmissionProps {
13
+ className?: string;
14
+ children?: React.ReactNode;
15
+ disabled?: boolean;
16
+ }
17
+ export declare const ClaimSubmission: ({ className, children, disabled, }: ClaimSubmissionProps) => import("react/jsx-runtime").JSX.Element;
18
+ export default ClaimSubmission;
19
+ //# sourceMappingURL=claim-submission.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"claim-submission.d.ts","sourceRoot":"","sources":["../src/claim-submission.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AACH,MAAM,WAAW,oBAAoB;IACnC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,eAAO,MAAM,eAAe,GAAI,oCAI7B,oBAAoB,4CAiBtB,CAAC;AAEF,eAAe,eAAe,CAAC"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * ComplianceChecker Component
3
+ *
4
+ * Legal & compliance component with full dark mode support.
5
+ *
6
+ * @component
7
+ * @example
8
+ * ```tsx
9
+ * <ComplianceChecker className="custom-class" />
10
+ * ```
11
+ */
12
+ export interface ComplianceCheckerProps {
13
+ className?: string;
14
+ children?: React.ReactNode;
15
+ disabled?: boolean;
16
+ }
17
+ export declare const ComplianceChecker: ({ className, children, disabled, }: ComplianceCheckerProps) => import("react/jsx-runtime").JSX.Element;
18
+ export default ComplianceChecker;
19
+ //# sourceMappingURL=compliance-checker.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"compliance-checker.d.ts","sourceRoot":"","sources":["../src/compliance-checker.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AACH,MAAM,WAAW,sBAAsB;IACrC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,eAAO,MAAM,iBAAiB,GAAI,oCAI/B,sBAAsB,4CAiBxB,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * ContractViewer Component
3
+ *
4
+ * Legal & compliance component with full dark mode support.
5
+ *
6
+ * @component
7
+ * @example
8
+ * ```tsx
9
+ * <ContractViewer className="custom-class" />
10
+ * ```
11
+ */
12
+ export interface ContractViewerProps {
13
+ className?: string;
14
+ children?: React.ReactNode;
15
+ disabled?: boolean;
16
+ }
17
+ export declare const ContractViewer: ({ className, children, disabled, }: ContractViewerProps) => import("react/jsx-runtime").JSX.Element;
18
+ export default ContractViewer;
19
+ //# sourceMappingURL=contract-viewer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"contract-viewer.d.ts","sourceRoot":"","sources":["../src/contract-viewer.tsx"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AACH,MAAM,WAAW,mBAAmB;IAClC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,eAAO,MAAM,cAAc,GAAI,oCAI5B,mBAAmB,4CAiBrB,CAAC;AAEF,eAAe,cAAc,CAAC"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * legal-components
3
+ *
4
+ * Specialized components for the legal domain
5
+ *
6
+ * @package @sudobility/legal-components
7
+ */
8
+ export * from './claim-submission';
9
+ export * from './compliance-checker';
10
+ export * from './contract-viewer';
11
+ export * from './policy-manager';
12
+ export * from './signature-pad';
13
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC"}