@butternutbox/pawprint-native 0.16.0 → 0.17.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/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +20 -0
- package/dist/index.cjs +333 -131
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +334 -132
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/atoms/Button/Button.stories.tsx +44 -0
- package/src/components/atoms/Icon/Icon.tsx +1 -1
- package/src/components/molecules/NumberField/NumberFieldInput.tsx +10 -2
package/dist/index.d.cts
CHANGED
|
@@ -226,7 +226,7 @@ type TypographyProps = (SemanticVariant & NativeTextProps) | (TokenVariant & Nat
|
|
|
226
226
|
declare const Typography: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<Text>>;
|
|
227
227
|
|
|
228
228
|
type IconCategory = "core" | "marketing" | "payments" | "flags";
|
|
229
|
-
type IconSize = "xs" | "sm" | "md" | "lg" | "xl" | "2xl";
|
|
229
|
+
type IconSize = "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl";
|
|
230
230
|
type IconColour = "primary" | "secondary" | "disabled" | "success" | "warning" | "error" | "promo" | "info" | "alt" | "action-default" | "action-inverse";
|
|
231
231
|
type PawprintIcon = React.ComponentType<{
|
|
232
232
|
width?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -226,7 +226,7 @@ type TypographyProps = (SemanticVariant & NativeTextProps) | (TokenVariant & Nat
|
|
|
226
226
|
declare const Typography: React.ForwardRefExoticComponent<TypographyProps & React.RefAttributes<Text>>;
|
|
227
227
|
|
|
228
228
|
type IconCategory = "core" | "marketing" | "payments" | "flags";
|
|
229
|
-
type IconSize = "xs" | "sm" | "md" | "lg" | "xl" | "2xl";
|
|
229
|
+
type IconSize = "xxs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl";
|
|
230
230
|
type IconColour = "primary" | "secondary" | "disabled" | "success" | "warning" | "error" | "promo" | "info" | "alt" | "action-default" | "action-inverse";
|
|
231
231
|
type PawprintIcon = React.ComponentType<{
|
|
232
232
|
width?: number;
|