@zealicsolutions/web-ui 0.3.15 → 0.3.17

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.
@@ -91,6 +91,7 @@ export interface TextMoleculeType extends BaseMolecule {
91
91
  attributes: {
92
92
  text: TextAttributes;
93
93
  seoStyle: SelectAttributes;
94
+ fontVariant: SelectAttributes;
94
95
  };
95
96
  config: {
96
97
  props: TextMoleculeProps;
@@ -2,7 +2,7 @@
2
2
  import { ControllerProps } from 'react-hook-form';
3
3
  import { SelectOption } from 'atoms';
4
4
  import { InputFieldProps, SelectFieldProps } from 'molecules';
5
- export declare type InputFieldTypes = 'phone-number' | 'text' | 'email' | 'password' | 'numerical' | 'month_year_date' | 'day_month_year_date' | 'month_day_year_date' | 'us_zip_code' | 'any';
5
+ export declare type InputFieldTypes = 'phone_number' | 'text' | 'email' | 'password' | 'numerical' | 'month_year_date' | 'day_month_year_date' | 'month_day_year_date' | 'us_zip_code' | 'any';
6
6
  export declare type FieldTypes = 'input' | 'select' | 'checkbox';
7
7
  export declare type UIField<T = string> = (UIInputField & UISelectField & UICheckboxField) & {
8
8
  name: T;
@@ -5,7 +5,9 @@ export declare const phoneNumberValidation: RegExp;
5
5
  export declare const numberValidation: RegExp;
6
6
  export declare const emailValidation: RegExp;
7
7
  export declare const textValidation: RegExp;
8
- export declare const dateValidation: RegExp;
8
+ export declare const monthDayYearDateValidation: RegExp;
9
+ export declare const dayMonthYearDateValidation: RegExp;
10
+ export declare const monthYearDateValidation: RegExp;
9
11
  export declare const usZipCode: RegExp;
10
12
  export declare const getInputValidation: (type?: InputFieldTypes) => ValidationRule<RegExp> | undefined;
11
13
  export declare const postCodeMask: RegExp[];
package/dist/index.d.ts CHANGED
@@ -114,7 +114,7 @@ declare const Select: ({ ref, onBlur, onChange, value, placeholder, options, dis
114
114
 
115
115
  declare const getFieldPlaceholder: (type: FieldTypes$1, title?: string) => string;
116
116
 
117
- declare type InputFieldTypes = 'phone-number' | 'text' | 'email' | 'password' | 'numerical' | 'month_year_date' | 'day_month_year_date' | 'month_day_year_date' | 'us_zip_code' | 'any';
117
+ declare type InputFieldTypes = 'phone_number' | 'text' | 'email' | 'password' | 'numerical' | 'month_year_date' | 'day_month_year_date' | 'month_day_year_date' | 'us_zip_code' | 'any';
118
118
  declare type FieldTypes = 'input' | 'select' | 'checkbox';
119
119
  declare type UIField<T = string> = (UIInputField & UISelectField & UICheckboxField) & {
120
120
  name: T;
@@ -1501,6 +1501,7 @@ interface TextMoleculeType extends BaseMolecule {
1501
1501
  attributes: {
1502
1502
  text: TextAttributes;
1503
1503
  seoStyle: SelectAttributes;
1504
+ fontVariant: SelectAttributes;
1504
1505
  };
1505
1506
  config: {
1506
1507
  props: TextMoleculeProps$1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zealicsolutions/web-ui",
3
- "version": "0.3.15",
3
+ "version": "0.3.17",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"