@6thbridge/hexa 0.0.5 → 0.0.6
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/.turbo/turbo-lint.log +1 -1
- package/dist/index.d.mts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +1773 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1725 -2
- package/dist/index.mjs.map +1 -1
- package/dist/output.css +30 -0
- package/package.json +1 -1
package/.turbo/turbo-lint.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
WARN Issue while reading "/Users/joachim/.nvm/versions/node/v20.17.0/lib/node_modules/npmrc". EISDIR: illegal operation on a directory, read
|
2
2
|
|
3
|
-
> @6thbridge/hexa@0.0.
|
3
|
+
> @6thbridge/hexa@0.0.6 lint /Users/joachim/Documents/dev/payfusion/payfusion-component-library/packages/6thbridge-hexa
|
4
4
|
> eslint . --max-warnings 0
|
5
5
|
|
package/dist/index.d.mts
CHANGED
@@ -59,8 +59,16 @@ declare const Input: {
|
|
59
59
|
displayName: string;
|
60
60
|
};
|
61
61
|
|
62
|
+
type PasswordInputProps = InputProps & {
|
63
|
+
/**
|
64
|
+
* onValidate(validated: boolean, value: string) => void
|
65
|
+
* validated: this is boolean value that indicated that all validation options were met
|
66
|
+
* value: this is the string input value
|
67
|
+
*/
|
68
|
+
onValidate?: (validated: boolean, value: string) => void;
|
69
|
+
};
|
62
70
|
declare const PasswordInput: {
|
63
|
-
({ ...props }:
|
71
|
+
({ onValidate, onChange, ...props }: PasswordInputProps): react_jsx_runtime.JSX.Element;
|
64
72
|
displayName: string;
|
65
73
|
};
|
66
74
|
|
package/dist/index.d.ts
CHANGED
@@ -59,8 +59,16 @@ declare const Input: {
|
|
59
59
|
displayName: string;
|
60
60
|
};
|
61
61
|
|
62
|
+
type PasswordInputProps = InputProps & {
|
63
|
+
/**
|
64
|
+
* onValidate(validated: boolean, value: string) => void
|
65
|
+
* validated: this is boolean value that indicated that all validation options were met
|
66
|
+
* value: this is the string input value
|
67
|
+
*/
|
68
|
+
onValidate?: (validated: boolean, value: string) => void;
|
69
|
+
};
|
62
70
|
declare const PasswordInput: {
|
63
|
-
({ ...props }:
|
71
|
+
({ onValidate, onChange, ...props }: PasswordInputProps): react_jsx_runtime.JSX.Element;
|
64
72
|
displayName: string;
|
65
73
|
};
|
66
74
|
|