@shiflo/ui 0.0.1 → 0.0.3
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/components/Box/index.d.ts +2 -2
- package/dist/components/Typography/Typography.typing.d.ts +2 -2
- package/dist/components/Typography/index.d.ts +2 -2
- package/dist/theme/ThemeProvider.mjs +1 -1
- package/dist/typings/utility.d.ts +1 -1
- package/dist/utils/getUtilityProps.d.ts +1 -1
- package/dist/utils/getUtilityProps.mjs +5 -4
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactNode, ElementType } from 'react';
|
|
2
2
|
import { PolymorphicComponentProps } from '../../typings/component';
|
|
3
3
|
import { UtilityProps, RecursionPath } from '../../typings/utility';
|
|
4
4
|
import { BasicTheme } from 'basic-styled';
|
|
5
|
-
export interface BaseTypographyProps extends
|
|
5
|
+
export interface BaseTypographyProps extends UtilityProps {
|
|
6
6
|
variant?: keyof BasicTheme["typography"];
|
|
7
7
|
fontWeight?: 400 | 500 | 700;
|
|
8
8
|
color?: RecursionPath<BasicTheme["palette"]> | "inherit";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { default as Typography } from './Typography';
|
|
2
|
-
import {
|
|
3
|
-
export type {
|
|
2
|
+
import { TypographyProps } from './Typography.typing';
|
|
3
|
+
export type { TypographyProps };
|
|
4
4
|
export default Typography;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs as t, jsx as r } from "react/jsx-runtime";
|
|
2
2
|
import m from "basic-styled/setup/createBuilder";
|
|
3
3
|
import i from "basic-styled/setup/ResetStyle";
|
|
4
|
-
import f from "basic-styled/setup/ThemeProvider";
|
|
4
|
+
import f from "/Users/x/WebstormProjects/shiflo-ui/node_modules/.pnpm/basic-styled@0.1.8_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/basic-styled/dist/setup/ThemeProvider.mjs";
|
|
5
5
|
import l from "./dark.mjs";
|
|
6
6
|
import p from "./GlobalStyle.mjs";
|
|
7
7
|
import h from "./light.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { default as radius } from '../theme/radius';
|
|
2
2
|
import { default as spacing } from '../theme/spacing';
|
|
3
3
|
import { Properties } from 'csstype';
|
|
4
|
-
export type UtilityProps = Partial<Pick<Properties, "display" | "alignItems" | "justifyContent" | "flex" | "flexWrap" | "flexDirection" | "flexGrow" | "flexFlow" | "flexBasis" | "flexShrink" | "border" | "borderTop" | "borderBottom" | "borderRight" | "borderLeft"> & Record<"m" | "mt" | "mb" | "mr" | "ml" | "p" | "pt" | "pb" | "pl" | "pr", keyof typeof spacing> & Record<"br" | "brtl" | "brtr" | "brml" | "brmr", keyof typeof radius>>;
|
|
4
|
+
export type UtilityProps = Partial<Pick<Properties, "display" | "alignItems" | "justifyContent" | "flex" | "flexWrap" | "flexDirection" | "flexGrow" | "flexFlow" | "flexBasis" | "flexShrink" | "border" | "borderTop" | "borderBottom" | "borderRight" | "borderLeft"> & Record<"m" | "mt" | "mb" | "mr" | "ml" | "p" | "pt" | "pb" | "pl" | "pr" | "gap", keyof typeof spacing> & Record<"br" | "brtl" | "brtr" | "brml" | "brmr", keyof typeof radius>>;
|
|
5
5
|
export type RecursionPath<T, Prefix extends string = ""> = Exclude<{
|
|
6
6
|
[K in keyof T & (string | number)]: T[K] extends object ? `${Prefix}${K}` | RecursionPath<T[K], `${Prefix}${K}.`> : `${Prefix}${K}`;
|
|
7
7
|
}[keyof T & (string | number)], "primary" | "secondary">;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { UtilityProps } from '../typings/utility';
|
|
2
|
-
export default function getUtilityProps<T>({ display, flex, flexBasis, flexDirection, flexFlow, flexGrow, flexShrink, flexWrap, justifyContent, alignItems, m, mt, mr, mb, ml, p, pt, pr, pb, pl, border, borderTop, borderBottom, borderRight, borderLeft, br, brtl, brtr, brml, brmr }: T & UtilityProps): {};
|
|
2
|
+
export default function getUtilityProps<T>({ display, flex, flexBasis, flexDirection, flexFlow, flexGrow, flexShrink, flexWrap, justifyContent, alignItems, m, mt, mr, mb, ml, p, pt, pr, pb, pl, border, borderTop, borderBottom, borderRight, borderLeft, br, brtl, brtr, brml, brmr, gap }: T & UtilityProps): {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import g from "../theme/radius.mjs";
|
|
2
2
|
import s from "../theme/spacing.mjs";
|
|
3
|
-
function
|
|
3
|
+
function Q({
|
|
4
4
|
display: a,
|
|
5
5
|
flex: t,
|
|
6
6
|
flexBasis: n,
|
|
@@ -30,11 +30,12 @@ function N({
|
|
|
30
30
|
brtl: B,
|
|
31
31
|
brtr: E,
|
|
32
32
|
brml: H,
|
|
33
|
-
brmr: J
|
|
33
|
+
brmr: J,
|
|
34
|
+
gap: K
|
|
34
35
|
}) {
|
|
35
36
|
const i = {};
|
|
36
|
-
return a && Object.assign(i, { display: a }), t && Object.assign(i, { flex: t }), n && Object.assign(i, { flexBasis: n }), c && Object.assign(i, { flexDirection: c }), O && Object.assign(i, { flexFlow: O }), f && Object.assign(i, { flexGrow: f }), j && Object.assign(i, { flexShrink: j }), e && Object.assign(i, { flexWrap: e }), b && Object.assign(i, { justifyContent: b }), d && Object.assign(i, { alignItems: d }), R && Object.assign(i, { margin: s[R] }), o && Object.assign(i, { marginTop: s[o] }), p && Object.assign(i, { marginRight: s[p] }), h && Object.assign(i, { marginLeft: s[h] }), u && Object.assign(i, { marginRight: s[u] }), L && Object.assign(i, { padding: s[L] }), T && Object.assign(i, { paddingTop: s[T] }), r && Object.assign(i, { paddingRight: s[r] }), P && Object.assign(i, { paddingLeft: s[P] }), m && Object.assign(i, { paddingRight: s[m] }), U && Object.assign(i, { border: U }), q && Object.assign(i, { borderTop: q }), v && Object.assign(i, { borderBottom: v }), y && Object.assign(i, { borderRight: y }), z && Object.assign(i, { borderLeft: z }), A && Object.assign(i, { borderRadius: g[A] }), B && Object.assign(i, { borderTopLeftRadius: g[B] }), E && Object.assign(i, { borderTopRightRadius: g[E] }), H && Object.assign(i, { borderBottomLeftRadius: g[H] }), J && Object.assign(i, { borderBottomRightRadius: g[J] }), i;
|
|
37
|
+
return a && Object.assign(i, { display: a }), t && Object.assign(i, { flex: t }), n && Object.assign(i, { flexBasis: n }), c && Object.assign(i, { flexDirection: c }), O && Object.assign(i, { flexFlow: O }), f && Object.assign(i, { flexGrow: f }), j && Object.assign(i, { flexShrink: j }), e && Object.assign(i, { flexWrap: e }), b && Object.assign(i, { justifyContent: b }), d && Object.assign(i, { alignItems: d }), R && Object.assign(i, { margin: s[R] }), o && Object.assign(i, { marginTop: s[o] }), p && Object.assign(i, { marginRight: s[p] }), h && Object.assign(i, { marginLeft: s[h] }), u && Object.assign(i, { marginRight: s[u] }), L && Object.assign(i, { padding: s[L] }), T && Object.assign(i, { paddingTop: s[T] }), r && Object.assign(i, { paddingRight: s[r] }), P && Object.assign(i, { paddingLeft: s[P] }), m && Object.assign(i, { paddingRight: s[m] }), K && Object.assign(i, { gap: s[K] }), U && Object.assign(i, { border: U }), q && Object.assign(i, { borderTop: q }), v && Object.assign(i, { borderBottom: v }), y && Object.assign(i, { borderRight: y }), z && Object.assign(i, { borderLeft: z }), A && Object.assign(i, { borderRadius: g[A] }), B && Object.assign(i, { borderTopLeftRadius: g[B] }), E && Object.assign(i, { borderTopRightRadius: g[E] }), H && Object.assign(i, { borderBottomLeftRadius: g[H] }), J && Object.assign(i, { borderBottomRightRadius: g[J] }), i;
|
|
37
38
|
}
|
|
38
39
|
export {
|
|
39
|
-
|
|
40
|
+
Q as default
|
|
40
41
|
};
|