@nice2dev/ui-enterprise 1.0.17 → 1.0.18
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/index.d.ts +8 -8
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as default_2 } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { NiceStandardProps } from '@nice2dev/ui';
|
|
3
3
|
import { ReactNode } from 'react';
|
|
4
4
|
|
|
5
5
|
export declare type AccessEventType = 'login_success' | 'login_failed' | 'logout' | 'password_change' | 'password_reset' | 'mfa_enabled' | 'mfa_disabled' | 'mfa_challenged' | 'permission_change' | 'session_expired' | 'account_locked' | 'account_unlocked' | 'api_key_created' | 'api_key_revoked' | 'token_refresh' | 'suspicious_activity';
|
|
@@ -495,7 +495,7 @@ export declare interface InvoiceTemplate {
|
|
|
495
495
|
|
|
496
496
|
export declare const NiceAccessLog: default_2.ForwardRefExoticComponent<NiceAccessLogProps & default_2.RefAttributes<NiceAccessLogRef>>;
|
|
497
497
|
|
|
498
|
-
export declare interface NiceAccessLogProps extends
|
|
498
|
+
export declare interface NiceAccessLogProps extends NiceStandardProps {
|
|
499
499
|
/** Log entries data */
|
|
500
500
|
entries: AccessLogEntry[];
|
|
501
501
|
/** Initial filter */
|
|
@@ -549,7 +549,7 @@ export declare interface NiceAccessLogRef {
|
|
|
549
549
|
|
|
550
550
|
export declare const NiceAuditTrail: default_2.ForwardRefExoticComponent<NiceAuditTrailProps & default_2.RefAttributes<NiceAuditTrailRef>>;
|
|
551
551
|
|
|
552
|
-
export declare interface NiceAuditTrailProps extends
|
|
552
|
+
export declare interface NiceAuditTrailProps extends NiceStandardProps {
|
|
553
553
|
/** Data source */
|
|
554
554
|
dataSource: AuditDataSource;
|
|
555
555
|
/** Initial filter */
|
|
@@ -582,7 +582,7 @@ export declare interface NiceAuditTrailRef {
|
|
|
582
582
|
|
|
583
583
|
export declare const NiceContractEditor: default_2.ForwardRefExoticComponent<NiceContractEditorProps & default_2.RefAttributes<NiceContractEditorRef>>;
|
|
584
584
|
|
|
585
|
-
export declare interface NiceContractEditorProps extends
|
|
585
|
+
export declare interface NiceContractEditorProps extends NiceStandardProps {
|
|
586
586
|
/** Document to edit */
|
|
587
587
|
document: ContractDocument;
|
|
588
588
|
/** Available clause library */
|
|
@@ -636,7 +636,7 @@ export declare interface NiceContractEditorRef {
|
|
|
636
636
|
|
|
637
637
|
export declare const NiceDataExportCenter: default_2.ForwardRefExoticComponent<NiceDataExportCenterProps & default_2.RefAttributes<NiceDataExportCenterRef>>;
|
|
638
638
|
|
|
639
|
-
export declare interface NiceDataExportCenterProps extends
|
|
639
|
+
export declare interface NiceDataExportCenterProps extends NiceStandardProps {
|
|
640
640
|
/** Data source */
|
|
641
641
|
dataSource: ExportDataSource;
|
|
642
642
|
/** Available export formats */
|
|
@@ -675,7 +675,7 @@ export declare interface NiceDataExportCenterRef {
|
|
|
675
675
|
|
|
676
676
|
export declare const NiceGDPRConsent: default_2.ForwardRefExoticComponent<NiceGDPRConsentProps & default_2.RefAttributes<NiceGDPRConsentRef>>;
|
|
677
677
|
|
|
678
|
-
export declare interface NiceGDPRConsentProps extends
|
|
678
|
+
export declare interface NiceGDPRConsentProps extends NiceStandardProps {
|
|
679
679
|
/** Application name */
|
|
680
680
|
appName: string;
|
|
681
681
|
/** Company name */
|
|
@@ -724,7 +724,7 @@ export declare interface NiceGDPRConsentRef {
|
|
|
724
724
|
|
|
725
725
|
export declare const NiceGlobalSearch: default_2.ForwardRefExoticComponent<NiceGlobalSearchProps & default_2.RefAttributes<NiceGlobalSearchRef>>;
|
|
726
726
|
|
|
727
|
-
export declare interface NiceGlobalSearchProps extends
|
|
727
|
+
export declare interface NiceGlobalSearchProps extends NiceStandardProps {
|
|
728
728
|
/** Search sources */
|
|
729
729
|
sources: SearchSource[];
|
|
730
730
|
/** Placeholder text */
|
|
@@ -775,7 +775,7 @@ export declare interface NiceGlobalSearchRef {
|
|
|
775
775
|
|
|
776
776
|
export declare const NiceInvoiceDesigner: default_2.ForwardRefExoticComponent<NiceInvoiceDesignerProps & default_2.RefAttributes<NiceInvoiceDesignerRef>>;
|
|
777
777
|
|
|
778
|
-
export declare interface NiceInvoiceDesignerProps extends
|
|
778
|
+
export declare interface NiceInvoiceDesignerProps extends NiceStandardProps {
|
|
779
779
|
/** Initial template */
|
|
780
780
|
template?: InvoiceTemplate;
|
|
781
781
|
/** Invoice data for preview */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nice2dev/ui-enterprise",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
4
4
|
"description": "Nice2Dev UI Enterprise - Compliance & enterprise-grade React components: DataExportCenter, AuditTrail, ContractEditor, GDPRConsent, GlobalSearch, InvoiceDesigner, AccessLog",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@nice2dev/ui": "^1.0.
|
|
34
|
+
"@nice2dev/ui": "^1.0.18",
|
|
35
35
|
"react": ">=17.0.0",
|
|
36
36
|
"react-dom": ">=17.0.0"
|
|
37
37
|
},
|