plainframe-ui 0.1.50 → 0.1.53
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/index.d.ts +0 -5
- package/dist/index.js +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1513,7 +1513,6 @@ type TypographyProps = {
|
|
|
1513
1513
|
};
|
|
1514
1514
|
declare const Typography: React.FC<TypographyProps>;
|
|
1515
1515
|
|
|
1516
|
-
/** @jsxImportSource @emotion/react */
|
|
1517
1516
|
type Scale = {
|
|
1518
1517
|
0: string;
|
|
1519
1518
|
50: string;
|
|
@@ -1556,11 +1555,9 @@ type PlainframeUITheme = {
|
|
|
1556
1555
|
onColors: Record<string, string>;
|
|
1557
1556
|
};
|
|
1558
1557
|
};
|
|
1559
|
-
/** Deep partial - makes all nested properties optional */
|
|
1560
1558
|
type DeepPartial<T> = T extends object ? {
|
|
1561
1559
|
[P in keyof T]?: DeepPartial<T[P]>;
|
|
1562
1560
|
} : T;
|
|
1563
|
-
/** Partial theme for user customization - all values optional at any depth */
|
|
1564
1561
|
type PartialTheme = DeepPartial<PlainframeUITheme>;
|
|
1565
1562
|
type Mode = "light" | "dark";
|
|
1566
1563
|
declare const surfaceFromNeutral: (mode: Mode, n: Scale) => {
|
|
@@ -1591,8 +1588,6 @@ declare module "@emotion/react" {
|
|
|
1591
1588
|
}
|
|
1592
1589
|
}
|
|
1593
1590
|
|
|
1594
|
-
/** @jsxImportSource @emotion/react */
|
|
1595
|
-
|
|
1596
1591
|
type ThemeProp = PartialTheme & {
|
|
1597
1592
|
primaryKey?: string;
|
|
1598
1593
|
light?: PartialTheme & {
|