@butternutbox/pawprint-native 0.1.0 → 0.2.1
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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +20 -0
- package/dist/index.cjs +2213 -2174
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -3
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2212 -2173
- package/dist/index.js.map +1 -1
- package/package.json +3 -4
- package/src/components/atoms/Illustration/Illustration.stories.tsx +2 -2
- package/src/components/atoms/Illustration/Illustration.tsx +3 -3
- package/src/components/atoms/Link/Link.test.tsx +3 -3
- package/src/components/atoms/Link/Link.tsx +7 -6
- package/src/components/atoms/Switch/Switch.tsx +13 -5
- package/src/components/molecules/ButtonDock/ButtonDock.stories.tsx +44 -25
- package/src/components/molecules/ButtonDock/ButtonDock.tsx +16 -13
- package/src/components/molecules/ButtonGroup/ButtonGroup.stories.tsx +47 -22
- package/src/components/molecules/FilterTab/FilterTab.tsx +4 -4
- package/src/components/molecules/PasswordField/PasswordFieldError.tsx +6 -5
- package/src/components/molecules/PasswordField/PasswordFieldRequirements.tsx +11 -8
- package/src/components/molecules/PictureSelector/PictureSelector.stories.tsx +0 -39
- package/src/components/molecules/PictureSelector/PictureSelector.tsx +58 -36
- package/tsup.config.ts +1 -0
package/dist/index.d.cts
CHANGED
|
@@ -392,7 +392,7 @@ type IconButtonProps = IconButtonOwnProps & Omit<PressableProps, keyof IconButto
|
|
|
392
392
|
*/
|
|
393
393
|
declare const IconButton: React.ForwardRefExoticComponent<IconButtonOwnProps & Omit<PressableProps, "children" | keyof IconButtonOwnProps> & React.RefAttributes<View>>;
|
|
394
394
|
|
|
395
|
-
type IllustrationSize = "sm" | "lg";
|
|
395
|
+
type IllustrationSize = "sm" | "lg" | "xl";
|
|
396
396
|
type PawprintIllustration$2 = React.ComponentType<{
|
|
397
397
|
width?: number;
|
|
398
398
|
height?: number;
|
|
@@ -415,7 +415,7 @@ type IllustrationProps = IllustrationOwnProps & Omit<ViewProps, keyof Illustrati
|
|
|
415
415
|
* ```
|
|
416
416
|
*
|
|
417
417
|
* @param illustration - **(required)** Illustration component
|
|
418
|
-
* @param size - *(optional)* Size variant: sm (default), lg
|
|
418
|
+
* @param size - *(optional)* Size variant: sm (default), lg, xl
|
|
419
419
|
* @param aria-label - *(optional)* Accessible label
|
|
420
420
|
*/
|
|
421
421
|
declare const Illustration: React.ForwardRefExoticComponent<IllustrationOwnProps & Omit<ViewProps, keyof IllustrationOwnProps> & React.RefAttributes<View>>;
|
|
@@ -1828,7 +1828,6 @@ type PawprintIllustration = React.ComponentType<{
|
|
|
1828
1828
|
type PictureSelectorItem = {
|
|
1829
1829
|
value: string;
|
|
1830
1830
|
illustration?: PawprintIllustration;
|
|
1831
|
-
icon?: PawprintIcon;
|
|
1832
1831
|
disabled?: boolean;
|
|
1833
1832
|
ariaLabel?: string;
|
|
1834
1833
|
insightTitle?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -392,7 +392,7 @@ type IconButtonProps = IconButtonOwnProps & Omit<PressableProps, keyof IconButto
|
|
|
392
392
|
*/
|
|
393
393
|
declare const IconButton: React.ForwardRefExoticComponent<IconButtonOwnProps & Omit<PressableProps, "children" | keyof IconButtonOwnProps> & React.RefAttributes<View>>;
|
|
394
394
|
|
|
395
|
-
type IllustrationSize = "sm" | "lg";
|
|
395
|
+
type IllustrationSize = "sm" | "lg" | "xl";
|
|
396
396
|
type PawprintIllustration$2 = React.ComponentType<{
|
|
397
397
|
width?: number;
|
|
398
398
|
height?: number;
|
|
@@ -415,7 +415,7 @@ type IllustrationProps = IllustrationOwnProps & Omit<ViewProps, keyof Illustrati
|
|
|
415
415
|
* ```
|
|
416
416
|
*
|
|
417
417
|
* @param illustration - **(required)** Illustration component
|
|
418
|
-
* @param size - *(optional)* Size variant: sm (default), lg
|
|
418
|
+
* @param size - *(optional)* Size variant: sm (default), lg, xl
|
|
419
419
|
* @param aria-label - *(optional)* Accessible label
|
|
420
420
|
*/
|
|
421
421
|
declare const Illustration: React.ForwardRefExoticComponent<IllustrationOwnProps & Omit<ViewProps, keyof IllustrationOwnProps> & React.RefAttributes<View>>;
|
|
@@ -1828,7 +1828,6 @@ type PawprintIllustration = React.ComponentType<{
|
|
|
1828
1828
|
type PictureSelectorItem = {
|
|
1829
1829
|
value: string;
|
|
1830
1830
|
illustration?: PawprintIllustration;
|
|
1831
|
-
icon?: PawprintIcon;
|
|
1832
1831
|
disabled?: boolean;
|
|
1833
1832
|
ariaLabel?: string;
|
|
1834
1833
|
insightTitle?: string;
|