@mittwald/flow-react-components 0.2.0-alpha.224 → 0.2.0-alpha.225
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/CHANGELOG.md +6 -0
- package/dist/assets/doc-properties.json +5684 -4234
- package/dist/assets/passwordGeneration.worker-s7H8GYaN.js.map +1 -0
- package/dist/css/all.css +1 -1
- package/dist/js/@mittwald/password-tools-js.mjs +5 -0
- package/dist/js/@mittwald/password-tools-js.mjs.map +1 -0
- package/dist/js/_virtual/_.locale.json@95341064edeb0e38b66d786dbd62955c.mjs +64 -0
- package/dist/js/_virtual/_.locale.json@95341064edeb0e38b66d786dbd62955c.mjs.map +1 -0
- package/dist/js/components/src/components/FileField/FileField.mjs +3 -2
- package/dist/js/components/src/components/FileField/FileField.mjs.map +1 -1
- package/dist/js/components/src/components/Header/Header.mjs +1 -1
- package/dist/js/components/src/components/Header/Header.mjs.map +1 -1
- package/dist/js/components/src/components/Label/Label.mjs +30 -4
- package/dist/js/components/src/components/Label/Label.mjs.map +1 -1
- package/dist/js/components/src/components/Label/Label.module.scss.mjs +6 -2
- package/dist/js/components/src/components/Label/Label.module.scss.mjs.map +1 -1
- package/dist/js/components/src/components/PasswordCreationField/PasswordCreationField.mjs +303 -0
- package/dist/js/components/src/components/PasswordCreationField/PasswordCreationField.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/PasswordCreationField.module.scss.mjs +15 -0
- package/dist/js/components/src/components/PasswordCreationField/PasswordCreationField.module.scss.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/components/ComplexityIndicator/ComplexityIndicator.mjs +69 -0
- package/dist/js/components/src/components/PasswordCreationField/components/ComplexityIndicator/ComplexityIndicator.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/components/ComplexityIndicator/ComplexityIndicator.module.scss.mjs +23 -0
- package/dist/js/components/src/components/PasswordCreationField/components/ComplexityIndicator/ComplexityIndicator.module.scss.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/components/PasswordGenerateButton/PasswordGenerateButton.mjs +27 -0
- package/dist/js/components/src/components/PasswordCreationField/components/PasswordGenerateButton/PasswordGenerateButton.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.mjs +46 -0
- package/dist/js/components/src/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.mjs +44 -0
- package/dist/js/components/src/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.mjs +36 -0
- package/dist/js/components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.module.scss.mjs +9 -0
- package/dist/js/components/src/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.module.scss.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/defaultPasswordCreationPolicy.mjs +30 -0
- package/dist/js/components/src/components/PasswordCreationField/defaultPasswordCreationPolicy.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/lib/generateValidationTranslation.mjs +29 -0
- package/dist/js/components/src/components/PasswordCreationField/lib/generateValidationTranslation.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/lib/getStateFromLatestPolicyValidationResult.mjs +32 -0
- package/dist/js/components/src/components/PasswordCreationField/lib/getStateFromLatestPolicyValidationResult.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/lib/getStatusFromPolicyValidationResult.mjs +16 -0
- package/dist/js/components/src/components/PasswordCreationField/lib/getStatusFromPolicyValidationResult.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/worker/generatePassword.mjs +31 -0
- package/dist/js/components/src/components/PasswordCreationField/worker/generatePassword.mjs.map +1 -0
- package/dist/js/components/src/components/PasswordCreationField/worker/passwordGeneration.worker.mjs +32 -0
- package/dist/js/components/src/components/PasswordCreationField/worker/passwordGeneration.worker.mjs.map +1 -0
- package/dist/js/components/src/components/Section/Section.mjs +1 -1
- package/dist/js/components/src/components/Section/Section.mjs.map +1 -1
- package/dist/js/components/src/components/Section/components/SectionHeader/SectionHeader.mjs +2 -2
- package/dist/js/components/src/components/Section/components/SectionHeader/SectionHeader.mjs.map +1 -1
- package/dist/js/components/src/components/propTypes/index.mjs +1 -0
- package/dist/js/components/src/components/propTypes/index.mjs.map +1 -1
- package/dist/js/components/src/integrations/react-hook-form/components/Field/Field.mjs +11 -5
- package/dist/js/components/src/integrations/react-hook-form/components/Field/Field.mjs.map +1 -1
- package/dist/js/components/src/lib/promises/useAbortablePromise.mjs +16 -0
- package/dist/js/components/src/lib/promises/useAbortablePromise.mjs.map +1 -0
- package/dist/js/components/src/lib/propsContext/PropsContextProvider.mjs.map +1 -1
- package/dist/js/default.mjs +1 -0
- package/dist/js/default.mjs.map +1 -1
- package/dist/js/flr-universal.mjs +1 -0
- package/dist/js/flr-universal.mjs.map +1 -1
- package/dist/types/components/FileField/FileField.d.ts +2 -2
- package/dist/types/components/FileField/FileField.d.ts.map +1 -1
- package/dist/types/components/Header/Header.d.ts +2 -2
- package/dist/types/components/Header/Header.d.ts.map +1 -1
- package/dist/types/components/Label/Label.d.ts.map +1 -1
- package/dist/types/components/Label/stories/Default.stories.d.ts +1 -0
- package/dist/types/components/Label/stories/Default.stories.d.ts.map +1 -1
- package/dist/types/components/PasswordCreationField/PasswordCreationField.d.ts +22 -0
- package/dist/types/components/PasswordCreationField/PasswordCreationField.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/PasswordCreationField.test.d.ts +2 -0
- package/dist/types/components/PasswordCreationField/PasswordCreationField.test.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/components/ComplexityIndicator/ComplexityIndicator.d.ts +10 -0
- package/dist/types/components/PasswordCreationField/components/ComplexityIndicator/ComplexityIndicator.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/components/PasswordGenerateButton/PasswordGenerateButton.d.ts +10 -0
- package/dist/types/components/PasswordCreationField/components/PasswordGenerateButton/PasswordGenerateButton.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.d.ts +2 -0
- package/dist/types/components/PasswordCreationField/components/TogglePasswordVisibilityButton/TogglePasswordVisibilityButton.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.d.ts +11 -0
- package/dist/types/components/PasswordCreationField/components/ValidationResultButton/ValidationResultButton.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.d.ts +2 -0
- package/dist/types/components/PasswordCreationField/components/ValidationResultEntry/ValidationResultEntry.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/defaultPasswordCreationPolicy.d.ts +3 -0
- package/dist/types/components/PasswordCreationField/defaultPasswordCreationPolicy.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/index.d.ts +4 -0
- package/dist/types/components/PasswordCreationField/index.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/lib/generateValidationTranslation.d.ts +4 -0
- package/dist/types/components/PasswordCreationField/lib/generateValidationTranslation.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/lib/getStateFromLatestPolicyValidationResult.d.ts +2 -0
- package/dist/types/components/PasswordCreationField/lib/getStateFromLatestPolicyValidationResult.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/lib/getStatusFromPolicyValidationResult.d.ts +2 -0
- package/dist/types/components/PasswordCreationField/lib/getStatusFromPolicyValidationResult.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/stories/Default.stories.d.ts +12 -0
- package/dist/types/components/PasswordCreationField/stories/Default.stories.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/view.d.ts +8 -0
- package/dist/types/components/PasswordCreationField/view.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/worker/generatePassword.d.ts +3 -0
- package/dist/types/components/PasswordCreationField/worker/generatePassword.d.ts.map +1 -0
- package/dist/types/components/PasswordCreationField/worker/passwordGeneration.worker.d.ts +2 -0
- package/dist/types/components/PasswordCreationField/worker/passwordGeneration.worker.d.ts.map +1 -0
- package/dist/types/components/Section/Section.d.ts.map +1 -1
- package/dist/types/components/Section/components/SectionHeader/SectionHeader.d.ts +2 -2
- package/dist/types/components/Section/components/SectionHeader/SectionHeader.d.ts.map +1 -1
- package/dist/types/components/propTypes/index.d.ts +2 -0
- package/dist/types/components/propTypes/index.d.ts.map +1 -1
- package/dist/types/components/public.d.ts +1 -0
- package/dist/types/components/public.d.ts.map +1 -1
- package/dist/types/integrations/@mittwald/password-tools-js/index.d.ts +3 -0
- package/dist/types/integrations/@mittwald/password-tools-js/index.d.ts.map +1 -0
- package/dist/types/integrations/react-hook-form/components/Field/Field.d.ts.map +1 -1
- package/dist/types/lib/promises/useAbortablePromise.d.ts +7 -0
- package/dist/types/lib/promises/useAbortablePromise.d.ts.map +1 -0
- package/dist/types/lib/propsContext/PropsContextProvider.d.ts.map +1 -1
- package/dist/types/lib/propsContext/propsContext.d.ts +2 -0
- package/dist/types/lib/propsContext/propsContext.d.ts.map +1 -1
- package/dist/types/views/PasswordCreationFieldView.d.ts +5 -0
- package/dist/types/views/PasswordCreationFieldView.d.ts.map +1 -0
- package/package.json +12 -5
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.