allaw-ui 4.9.7 → 4.9.8
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 +2 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -133,3 +133,5 @@ export { default as AiText } from "./components/molecules/AiText/aiText";
|
|
|
133
133
|
export type { AiTextProps } from "./components/molecules/AiText/aiText";
|
|
134
134
|
export { default as Notification } from "./components/molecules/notification/Notification";
|
|
135
135
|
export type { NotificationProps } from "./components/molecules/notification/Notification";
|
|
136
|
+
export { default as Section } from "./components/molecules/section/Section";
|
|
137
|
+
export type { SectionProps, SectionAction } from "./components/molecules/section/Section";
|
package/dist/index.js
CHANGED
|
@@ -127,3 +127,5 @@ export { default as EmptyMessage } from "./components/molecules/emptyMessage/Emp
|
|
|
127
127
|
export { default as AiText } from "./components/molecules/AiText/aiText";
|
|
128
128
|
// Notification
|
|
129
129
|
export { default as Notification } from "./components/molecules/notification/Notification";
|
|
130
|
+
// Section
|
|
131
|
+
export { default as Section } from "./components/molecules/section/Section";
|