@fpkit/acss 2.0.0 → 2.1.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/libs/components/icons/icon.d.cts +4 -445
- package/libs/components/icons/icon.d.ts +4 -445
- package/libs/icons-287fce3a.d.ts +445 -0
- package/libs/icons.d.cts +1 -1
- package/libs/icons.d.ts +1 -1
- package/libs/index.cjs +26 -21
- package/libs/index.cjs.map +1 -1
- package/libs/index.d.cts +159 -3
- package/libs/index.d.ts +159 -3
- package/libs/index.js +12 -10
- package/libs/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/alert/alert.tsx +2 -3
- package/src/index.ts +7 -1
package/src/index.ts
CHANGED
|
@@ -17,6 +17,7 @@ export {
|
|
|
17
17
|
Footer as CardFooter,
|
|
18
18
|
type CardProps,
|
|
19
19
|
} from "./components/cards/card";
|
|
20
|
+
export { Alert, type AlertProps } from "./components/alert/alert";
|
|
20
21
|
export { Field, type FieldProps } from "./components/form/fields";
|
|
21
22
|
export { Input, type InputProps } from "./components/form/inputs";
|
|
22
23
|
export { Icon, type IconProps } from "./components/icons/icon";
|
|
@@ -41,7 +42,11 @@ export * from "./components/nav/nav";
|
|
|
41
42
|
export * from "./components/text/text";
|
|
42
43
|
|
|
43
44
|
// Title component (primary export)
|
|
44
|
-
export {
|
|
45
|
+
export {
|
|
46
|
+
default as Title,
|
|
47
|
+
type TitleProps,
|
|
48
|
+
type HeadingLevel,
|
|
49
|
+
} from "./components/title/title";
|
|
45
50
|
|
|
46
51
|
// Heading component (deprecated - use Title instead)
|
|
47
52
|
/** @deprecated Use Title component instead. Will be removed in v3.0.0 */
|
|
@@ -61,6 +66,7 @@ export * from "./components/breadcrumbs/breadcrumb";
|
|
|
61
66
|
export { default as To } from "./components/link/link";
|
|
62
67
|
export { default as FP } from "./components/fp";
|
|
63
68
|
export { default as Box } from "./components/fp";
|
|
69
|
+
export { default as UI } from "./components/ui";
|
|
64
70
|
|
|
65
71
|
// Core UI utility components
|
|
66
72
|
export * from "./components/ui";
|