tide-design-system 2.0.26 → 2.0.27

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/index.ts CHANGED
@@ -42,6 +42,7 @@ import type { Realm } from '@/types/Realm';
42
42
  import type { Size } from '@/types/Size';
43
43
  import type { Tab } from '@/types/Tab';
44
44
  import type { Target } from '@/types/Target';
45
+ import type { ValidationError, ValidationResult, ValidationLength } from '@/types/Validation';
45
46
 
46
47
  import { ALERT } from '@/types/Alert';
47
48
  import { BADGE, BADGE_PREMIUM, BADGE_TRUSTED } from '@/types/Badge';
@@ -52,6 +53,7 @@ import { PRIORITY } from '@/types/Priority';
52
53
  import { REALM } from '@/types/Realm';
53
54
  import { SIZE } from '@/types/Size';
54
55
  import { TARGET } from '@/types/Target';
56
+ import { VALIDATOR } from '@/types/Validation';
55
57
 
56
58
  import '@/assets/css/main.css';
57
59
 
@@ -73,6 +75,9 @@ export type {
73
75
  Size,
74
76
  Tab,
75
77
  Target,
78
+ ValidationError,
79
+ ValidationResult,
80
+ ValidationLength,
76
81
  };
77
82
 
78
83
  export {
@@ -119,4 +124,5 @@ export {
119
124
  TideSeoLinks,
120
125
  TideTabs,
121
126
  TideToggle,
127
+ VALIDATOR,
122
128
  };
package/package.json CHANGED
@@ -52,5 +52,5 @@
52
52
  "main": "dist/tide-design-system.cjs",
53
53
  "module": "dist/tide-design-system.esm.js",
54
54
  "types": "dist/tide-design-system.esm.d.ts",
55
- "version": "2.0.26"
55
+ "version": "2.0.27"
56
56
  }