@7shifts/sous-chef 3.91.1 → 3.92.0
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/dist/forms/index.d.ts +1 -0
- package/dist/forms/validations.d.ts +1 -0
- package/dist/icons/components/IconSparkleSolid.d.ts +9 -0
- package/dist/icons/components/index.d.ts +1 -0
- package/dist/index.js +298 -264
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +297 -266
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/forms/index.d.ts
CHANGED
|
@@ -31,3 +31,4 @@ export type { PillSelectOption } from './PillSelectField/types';
|
|
|
31
31
|
export type { AsyncSelectOptions } from './AsyncSelectField/types';
|
|
32
32
|
export type { FormikType } from './Form/types';
|
|
33
33
|
export type { PhoneFieldCountryCode } from './PhoneField/types';
|
|
34
|
+
export { isValidPhoneNumber } from './validations';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const isValidPhoneNumber: (value: string | undefined) => boolean;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize } from '../types';
|
|
3
|
+
type Props = {
|
|
4
|
+
size?: IconSize;
|
|
5
|
+
color?: string;
|
|
6
|
+
testId?: string;
|
|
7
|
+
} & React.SVGProps<SVGSVGElement>;
|
|
8
|
+
declare const IconSparkleSolid: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
|
|
9
|
+
export default IconSparkleSolid;
|
|
@@ -125,6 +125,7 @@ export { default as IconSignOut } from './IconSignOut';
|
|
|
125
125
|
export { default as IconSitemap } from './IconSitemap';
|
|
126
126
|
export { default as IconSlidersH } from './IconSlidersH';
|
|
127
127
|
export { default as IconSort } from './IconSort';
|
|
128
|
+
export { default as IconSparkleSolid } from './IconSparkleSolid';
|
|
128
129
|
export { default as IconSparkle } from './IconSparkle';
|
|
129
130
|
export { default as IconStarSolid } from './IconStarSolid';
|
|
130
131
|
export { default as IconStar } from './IconStar';
|