@a4ui/core 0.33.0 → 0.35.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/dist/elements.css +299 -0
- package/dist/full.css +299 -0
- package/dist/index.d.ts +27 -1
- package/dist/index.js +9140 -5065
- package/dist/ui/ActivityFeed.d.ts +49 -0
- package/dist/ui/AudioWaveform.d.ts +22 -0
- package/dist/ui/AvailabilityPicker.d.ts +35 -0
- package/dist/ui/CodeEditor.d.ts +25 -0
- package/dist/ui/CouponField.d.ts +33 -0
- package/dist/ui/EmojiPicker.d.ts +18 -0
- package/dist/ui/EventScheduler.d.ts +41 -0
- package/dist/ui/FollowingPointer.d.ts +24 -0
- package/dist/ui/GanttChart.d.ts +37 -0
- package/dist/ui/InteractiveMap.d.ts +50 -0
- package/dist/ui/JsonViewer.d.ts +24 -0
- package/dist/ui/Kanban.d.ts +49 -0
- package/dist/ui/Lamp.d.ts +22 -0
- package/dist/ui/Lightbox.d.ts +41 -0
- package/dist/ui/LocationPicker.d.ts +25 -0
- package/dist/ui/MaskedInput.d.ts +26 -0
- package/dist/ui/OnboardingChecklist.d.ts +51 -0
- package/dist/ui/OtpInput.d.ts +29 -0
- package/dist/ui/PivotTable.d.ts +37 -0
- package/dist/ui/PresenceAvatars.d.ts +54 -0
- package/dist/ui/QueryBuilder.d.ts +56 -0
- package/dist/ui/SheetSnap.d.ts +28 -0
- package/dist/ui/SignaturePad.d.ts +19 -0
- package/dist/ui/SpreadsheetGrid.d.ts +27 -0
- package/dist/ui/TreeTable.d.ts +52 -0
- package/dist/ui/VideoPlayerShell.d.ts +19 -0
- package/package.json +1 -1
- package/src/index.ts +60 -1
- package/src/ui/ActivityFeed.tsx +178 -0
- package/src/ui/AudioWaveform.tsx +190 -0
- package/src/ui/AvailabilityPicker.tsx +163 -0
- package/src/ui/CodeEditor.tsx +277 -0
- package/src/ui/CouponField.tsx +120 -0
- package/src/ui/EmojiPicker.tsx +424 -0
- package/src/ui/EventScheduler.tsx +280 -0
- package/src/ui/FollowingPointer.tsx +112 -0
- package/src/ui/GanttChart.tsx +283 -0
- package/src/ui/InteractiveMap.tsx +349 -0
- package/src/ui/JsonViewer.tsx +189 -0
- package/src/ui/Kanban.tsx +250 -0
- package/src/ui/Lamp.tsx +88 -0
- package/src/ui/Lightbox.tsx +261 -0
- package/src/ui/LocationPicker.tsx +96 -0
- package/src/ui/MaskedInput.tsx +108 -0
- package/src/ui/OnboardingChecklist.tsx +163 -0
- package/src/ui/OtpInput.tsx +153 -0
- package/src/ui/PivotTable.tsx +0 -0
- package/src/ui/PresenceAvatars.tsx +142 -0
- package/src/ui/QueryBuilder.tsx +280 -0
- package/src/ui/SheetSnap.tsx +264 -0
- package/src/ui/SignaturePad.tsx +221 -0
- package/src/ui/SpreadsheetGrid.tsx +304 -0
- package/src/ui/TreeTable.tsx +172 -0
- package/src/ui/VideoPlayerShell.tsx +282 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const A4UI_VERSION = "0.
|
|
1
|
+
export declare const A4UI_VERSION = "0.35.0";
|
|
2
2
|
export { cn } from './lib/cn';
|
|
3
3
|
export { useTheme, toggleTheme, setTheme, storedTheme, applyTheme, toggled, type Theme } from './lib/theme';
|
|
4
4
|
export { useEffects, isCalm, setEffects } from './lib/effects';
|
|
@@ -137,6 +137,32 @@ export { Globe, type GlobeMarker, type GlobeArc, type GlobeProps } from './ui/Gl
|
|
|
137
137
|
export { WorldMap, type WorldMapPoint, type WorldMapConnection, type WorldMapProps } from './ui/WorldMap';
|
|
138
138
|
export { Confetti, fireConfetti, type ConfettiProps } from './ui/Confetti';
|
|
139
139
|
export { CursorTrail, type CursorTrailProps } from './ui/CursorTrail';
|
|
140
|
+
export { Kanban, type KanbanCard, type KanbanColumn, type KanbanProps } from './ui/Kanban';
|
|
141
|
+
export { GanttChart, type GanttTask, type GanttChartProps } from './ui/GanttChart';
|
|
142
|
+
export { TreeTable, type TreeTableColumn, type TreeTableRow, type TreeTableProps } from './ui/TreeTable';
|
|
143
|
+
export { PivotTable, type PivotDatum, type PivotTableProps } from './ui/PivotTable';
|
|
144
|
+
export { OnboardingChecklist, type OnboardingStep, type OnboardingChecklistProps, } from './ui/OnboardingChecklist';
|
|
145
|
+
export { CouponField, type CouponFieldProps } from './ui/CouponField';
|
|
146
|
+
export { Lightbox, type LightboxImage, type LightboxProps } from './ui/Lightbox';
|
|
147
|
+
export { VideoPlayerShell, type VideoPlayerShellProps } from './ui/VideoPlayerShell';
|
|
148
|
+
export { AudioWaveform, type AudioWaveformProps } from './ui/AudioWaveform';
|
|
149
|
+
export { Lamp, type LampProps } from './ui/Lamp';
|
|
150
|
+
export { FollowingPointer, type FollowingPointerProps } from './ui/FollowingPointer';
|
|
151
|
+
export { SheetSnap, type SheetSnapProps } from './ui/SheetSnap';
|
|
152
|
+
export { OtpInput, type OtpInputProps } from './ui/OtpInput';
|
|
153
|
+
export { MaskedInput, type MaskedInputProps } from './ui/MaskedInput';
|
|
154
|
+
export { CodeEditor, type CodeEditorProps } from './ui/CodeEditor';
|
|
155
|
+
export { SignaturePad, type SignaturePadProps } from './ui/SignaturePad';
|
|
156
|
+
export { EmojiPicker, type EmojiPickerProps } from './ui/EmojiPicker';
|
|
157
|
+
export { EventScheduler, type SchedulerEvent, type EventSchedulerProps } from './ui/EventScheduler';
|
|
158
|
+
export { AvailabilityPicker, type AvailabilityPickerProps } from './ui/AvailabilityPicker';
|
|
159
|
+
export { InteractiveMap, type MapMarker, type InteractiveMapProps } from './ui/InteractiveMap';
|
|
160
|
+
export { LocationPicker, type LocationValue, type LocationPickerProps } from './ui/LocationPicker';
|
|
161
|
+
export { QueryBuilder, type QueryField, type QueryRule, type QueryGroup, type QueryBuilderProps, } from './ui/QueryBuilder';
|
|
162
|
+
export { JsonViewer, type JsonViewerProps } from './ui/JsonViewer';
|
|
163
|
+
export { SpreadsheetGrid, type SpreadsheetGridProps } from './ui/SpreadsheetGrid';
|
|
164
|
+
export { PresenceAvatars, type PresenceUser, type RemoteCursor, type PresenceAvatarsProps, } from './ui/PresenceAvatars';
|
|
165
|
+
export { ActivityFeed, type ActivityItem, type ActivityFeedProps } from './ui/ActivityFeed';
|
|
140
166
|
export { CopyButton, type CopyButtonProps, PlayPauseButton, type PlayPauseButtonProps, MuteButton, type MuteButtonProps, LockButton, type LockButtonProps, ThemeMorphButton, type ThemeMorphButtonProps, } from './ui/MorphPresets';
|
|
141
167
|
export { CodeTabs, type CodeTabsProps, type CodeTab } from './ui/CodeTabs';
|
|
142
168
|
export { PillSearch, type PillSearchProps, type PillField } from './ui/PillSearch';
|