@everymatrix/pam-change-password 1.70.1 → 1.71.1
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/cjs/checkbox-group-input_15.cjs.entry.js +135 -135
- package/dist/collection/utils/types.js +1 -0
- package/dist/esm/checkbox-group-input_15.entry.js +135 -135
- package/dist/pam-change-password/checkbox-group-input_15.entry.js +218 -218
- package/dist/types/components/pam-change-password/pam-change-password.d.ts +1 -1
- package/dist/types/utils/types.d.ts +27 -0
- package/package.json +1 -1
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/pam-change-password/.stencil/packages/stencil/general-input/src/utils/types.d.ts +0 -111
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop/Widgets & Template}/widgets-monorepo/packages/stencil/pam-change-password/.stencil/libs/common/src/storybook/storybook-utils.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop/Widgets & Template}/widgets-monorepo/packages/stencil/pam-change-password/.stencil/packages/stencil/pam-change-password/stencil.config.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop/Widgets & Template}/widgets-monorepo/packages/stencil/pam-change-password/.stencil/packages/stencil/pam-change-password/stencil.config.dev.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop/Widgets & Template}/widgets-monorepo/packages/stencil/pam-change-password/.stencil/packages/stencil/pam-change-password/storybook/main.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop/Widgets & Template}/widgets-monorepo/packages/stencil/pam-change-password/.stencil/packages/stencil/pam-change-password/storybook/preview.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop/Widgets & Template}/widgets-monorepo/packages/stencil/pam-change-password/.stencil/tools/plugins/index.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop/Widgets & Template}/widgets-monorepo/packages/stencil/pam-change-password/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop/Widgets & Template}/widgets-monorepo/packages/stencil/pam-change-password/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop/Widgets & Template}/widgets-monorepo/packages/stencil/pam-change-password/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { InputStateEvent, InputValueEvent, ValidationSchema } from '
|
|
1
|
+
import type { InputStateEvent, InputValueEvent, ValidationSchema } from '../../utils/types';
|
|
2
2
|
import "../../../../../../dist/packages/stencil/ui-skeleton/dist/types/index";
|
|
3
3
|
import "../../../../../../dist/packages/stencil/general-input/dist/types/index";
|
|
4
4
|
export declare class PamChangePassword {
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export interface ValidationSchema {
|
|
2
|
+
mandatory: boolean;
|
|
3
|
+
type?: string;
|
|
4
|
+
custom?: CustomValidationRules[];
|
|
5
|
+
minLength?: number;
|
|
6
|
+
maxLength?: number;
|
|
7
|
+
min?: number;
|
|
8
|
+
max?: number;
|
|
9
|
+
}
|
|
10
|
+
export interface CustomValidationRules {
|
|
11
|
+
rule: string;
|
|
12
|
+
errorMessage: string;
|
|
13
|
+
errorKey: string;
|
|
14
|
+
pattern?: string;
|
|
15
|
+
displayName?: string;
|
|
16
|
+
correlationField?: string;
|
|
17
|
+
correlationValue?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface InputStateEvent {
|
|
20
|
+
valid: boolean;
|
|
21
|
+
name: string;
|
|
22
|
+
}
|
|
23
|
+
export interface InputValueEvent {
|
|
24
|
+
value: string;
|
|
25
|
+
name: string;
|
|
26
|
+
type?: string;
|
|
27
|
+
}
|
package/package.json
CHANGED
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
export interface RegistrationConfig {
|
|
2
|
-
type: string;
|
|
3
|
-
content: RegCfgContent;
|
|
4
|
-
}
|
|
5
|
-
interface RegCfgContent {
|
|
6
|
-
actions: string[];
|
|
7
|
-
fields: RegCfgContentField[];
|
|
8
|
-
verifications: string[];
|
|
9
|
-
registrationID: string;
|
|
10
|
-
step: string;
|
|
11
|
-
}
|
|
12
|
-
export interface RegCfgContentField {
|
|
13
|
-
action: string;
|
|
14
|
-
autofill: boolean;
|
|
15
|
-
data?: Values;
|
|
16
|
-
defaultValue: string;
|
|
17
|
-
inputType: string;
|
|
18
|
-
tooltip: string;
|
|
19
|
-
multiple: boolean;
|
|
20
|
-
name: string;
|
|
21
|
-
readOnly: boolean;
|
|
22
|
-
displayName: string;
|
|
23
|
-
placeholder?: string;
|
|
24
|
-
validate: ValidationSchema;
|
|
25
|
-
}
|
|
26
|
-
export interface ValidationSchema {
|
|
27
|
-
mandatory: boolean;
|
|
28
|
-
type?: string;
|
|
29
|
-
custom?: CustomValidationRules[];
|
|
30
|
-
minLength?: number;
|
|
31
|
-
maxLength?: number;
|
|
32
|
-
min?: number;
|
|
33
|
-
max?: number;
|
|
34
|
-
}
|
|
35
|
-
export interface CustomValidationRules {
|
|
36
|
-
rule: string;
|
|
37
|
-
errorMessage: string;
|
|
38
|
-
errorKey: string;
|
|
39
|
-
pattern?: string;
|
|
40
|
-
displayName?: string;
|
|
41
|
-
correlationField?: string;
|
|
42
|
-
correlationValue?: string;
|
|
43
|
-
}
|
|
44
|
-
export interface CustomRule {
|
|
45
|
-
rule: string;
|
|
46
|
-
errorMessage: string;
|
|
47
|
-
}
|
|
48
|
-
interface Values {
|
|
49
|
-
values?: Option[];
|
|
50
|
-
subFields?: RegCfgContentField[];
|
|
51
|
-
}
|
|
52
|
-
export interface Option {
|
|
53
|
-
value: string;
|
|
54
|
-
label: string;
|
|
55
|
-
}
|
|
56
|
-
export interface InputStateEvent {
|
|
57
|
-
valid: boolean;
|
|
58
|
-
name: string;
|
|
59
|
-
}
|
|
60
|
-
export interface InputValueEvent {
|
|
61
|
-
value: string;
|
|
62
|
-
name: string;
|
|
63
|
-
type?: string;
|
|
64
|
-
}
|
|
65
|
-
export interface InputValue {
|
|
66
|
-
value: any;
|
|
67
|
-
name: string;
|
|
68
|
-
isDuplicate: boolean;
|
|
69
|
-
type?: string;
|
|
70
|
-
}
|
|
71
|
-
export interface InputValidity {
|
|
72
|
-
isValid: boolean;
|
|
73
|
-
name: string;
|
|
74
|
-
}
|
|
75
|
-
export interface RegisterStep {
|
|
76
|
-
registrationId: string;
|
|
77
|
-
}
|
|
78
|
-
export interface StepState {
|
|
79
|
-
event: string;
|
|
80
|
-
type: string;
|
|
81
|
-
}
|
|
82
|
-
export interface PasswordComplexity {
|
|
83
|
-
rule: string;
|
|
84
|
-
passed: boolean;
|
|
85
|
-
ruleKey: string;
|
|
86
|
-
}
|
|
87
|
-
export interface ValueObject {
|
|
88
|
-
name: string;
|
|
89
|
-
}
|
|
90
|
-
export interface InputType {
|
|
91
|
-
name: string;
|
|
92
|
-
inputType: string;
|
|
93
|
-
displayName: string;
|
|
94
|
-
validate: ValidationSchema;
|
|
95
|
-
action: string;
|
|
96
|
-
multiple: boolean;
|
|
97
|
-
autofill: boolean;
|
|
98
|
-
readOnly: boolean;
|
|
99
|
-
data?: {
|
|
100
|
-
subFields?: InputType[];
|
|
101
|
-
values?: Option[];
|
|
102
|
-
};
|
|
103
|
-
defaultValue: string;
|
|
104
|
-
isDuplicateInput?: boolean;
|
|
105
|
-
tooltip: string;
|
|
106
|
-
placeholder?: string;
|
|
107
|
-
customInfo?: {
|
|
108
|
-
[key: string]: any;
|
|
109
|
-
};
|
|
110
|
-
}
|
|
111
|
-
export {};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|