sixseconds-modules 3.0.6 → 3.0.9

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.
@@ -1,23 +1,12 @@
1
1
  import { t } from '../types';
2
- import * as Yup from "yup";
3
2
  export declare const commonUtil: (t: t) => {
4
- email: Yup.StringSchema<string | undefined, Yup.AnyObject, undefined, "">;
5
- name: Yup.StringSchema<string | undefined, Yup.AnyObject, undefined, "">;
6
- url: Yup.StringSchema<string | undefined, Yup.AnyObject, undefined, "">;
7
- password: Yup.StringSchema<string | undefined, Yup.AnyObject, undefined, "">;
8
- date: Yup.StringSchema<string, Yup.AnyObject, undefined, "">;
9
- positiveNumber: Yup.NumberSchema<number | undefined, Yup.AnyObject, undefined, "">;
10
- confirmPass: Yup.StringSchema<string | undefined, Yup.AnyObject, undefined, "">;
11
- cvsFile: Yup.ObjectSchema<{
12
- file: {};
13
- }, Yup.AnyObject, {
14
- file: undefined;
15
- }, "">;
3
+ password: import('yup').StringSchema<string | undefined, import('yup').AnyObject, undefined, "">;
4
+ confirmPass: import('yup').StringSchema<string | undefined, import('yup').AnyObject, undefined, "">;
16
5
  };
17
- export declare const ResetPasswordValidationUtil: (t: t) => Yup.ObjectSchema<{
6
+ export declare const ResetPasswordValidationUtil: (t: t) => import('yup').ObjectSchema<{
18
7
  newPassword: string;
19
8
  passwordConfirmation: string | undefined;
20
- }, Yup.AnyObject, {
9
+ }, import('yup').AnyObject, {
21
10
  newPassword: undefined;
22
11
  passwordConfirmation: undefined;
23
12
  }, "">;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sixseconds-modules",
3
- "version": "3.0.6",
3
+ "version": "3.0.9",
4
4
  "description": "SixSeconds common Header and UI, styled with raw namespaced CSS (no MUI) so it never collides with or inherits the host application's styles.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
@@ -1,5 +0,0 @@
1
- export * from './common';
2
- export * from './header';
3
- export * from './elements';
4
- export * from './features';
5
- export * from './dialogs';
@@ -1,35 +0,0 @@
1
- export declare const TRANSLATION_PREFIX: Readonly<{
2
- tooltip: "tooltip_";
3
- validation: "validation_";
4
- toast: "toast_";
5
- }>;
6
- export declare const COMMON_VALIDATION_MASSAGE: Readonly<{
7
- password: string;
8
- email: string;
9
- oldPassword: string;
10
- gender: string;
11
- projectType: string;
12
- name: string;
13
- surname: string;
14
- language: string;
15
- pricing: string;
16
- coach: string;
17
- amount: string;
18
- credit: string;
19
- report: string;
20
- reportNorm: string;
21
- date: string;
22
- parentDistributor: string;
23
- belongTo: string;
24
- notes: string;
25
- company: string;
26
- orgLogo: string;
27
- url: string;
28
- description: string;
29
- maxVal: string;
30
- minVal: string;
31
- emailValidation: string;
32
- urlValidation: string;
33
- certifications: string;
34
- questions: string;
35
- }>;
@@ -1,4 +0,0 @@
1
- import { z } from 'zod';
2
- export declare const commonValidation: {
3
- envUrl: z.ZodString;
4
- };