@asymmetric-effort/specifyjs 0.1.0 → 0.1.1
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/specifyjs-build.cjs.js +2 -0
- package/dist/specifyjs-build.cjs.js.map +1 -0
- package/dist/specifyjs-build.d.ts +43 -0
- package/dist/specifyjs-build.esm.js +2 -0
- package/dist/specifyjs-build.esm.js.map +1 -0
- package/dist/specifyjs-components.cjs.js +1 -1
- package/dist/specifyjs-components.cjs.js.map +1 -1
- package/dist/specifyjs-components.d.ts +16 -2
- package/dist/specifyjs-components.esm.js +1 -1
- package/dist/specifyjs-components.esm.js.map +1 -1
- package/dist/specifyjs-dom.cjs.js +1 -1
- package/dist/specifyjs-dom.cjs.js.map +1 -1
- package/dist/specifyjs-dom.esm.js +1 -1
- package/dist/specifyjs-dom.esm.js.map +1 -1
- package/package.json +6 -1
|
@@ -2090,5 +2090,19 @@ interface VizWrapperProps {
|
|
|
2090
2090
|
}
|
|
2091
2091
|
declare function VizWrapper(props: VizWrapperProps): specifyjs_shared_types.SpecElement<specifyjs_shared_types.Props>;
|
|
2092
2092
|
|
|
2093
|
-
|
|
2094
|
-
|
|
2093
|
+
interface GoogleAnalyticsProps {
|
|
2094
|
+
/** Google Analytics measurement ID (e.g., 'G-XXXXXXXXXX') */
|
|
2095
|
+
measurementId: string;
|
|
2096
|
+
/** Disable tracking (useful for development/testing) */
|
|
2097
|
+
disabled?: boolean;
|
|
2098
|
+
/** Enable debug mode (logs events to console) */
|
|
2099
|
+
debug?: boolean;
|
|
2100
|
+
/** Anonymize IP addresses */
|
|
2101
|
+
anonymizeIp?: boolean;
|
|
2102
|
+
/** Custom config parameters passed to gtag('config', ...) */
|
|
2103
|
+
config?: Record<string, unknown>;
|
|
2104
|
+
}
|
|
2105
|
+
declare function GoogleAnalytics(props: GoogleAnalyticsProps): null;
|
|
2106
|
+
|
|
2107
|
+
export { Accordion, Alert, AnalogClock, Avatar, Badge, BarGraph, Breadcrumb, Card, Carousel, CartesianGraph2D, Checkbox, ColorPicker, ColorWheel, ComplexGraph2D, ContextMenu, DataGrid, DatePicker, DigitalClock, Drawer, Dropdown, EmptyState, FileUpload, FlexContainer, FlexItem, FormFieldWrapper, GoogleAnalytics, Grid, GridItem, HypercubeGraph, Image, LineGraph, ListView, Menubar, Modal, MultilineField, NavWrapper, NumberSpinner, Pagination, Panel, PieGraph, PolarGraph2D, Popover, ProgressBar, RadioGroup, ScrollContainer, Select, Sidebar, Skeleton, Slider, Spinner, Splitter, Stepper, Tabs, Tag, TextEditor, TextField, TimePicker, ToastContainer, Toggle, Toolbar, Tooltip, TreeNav, TreeNode, VideoPlayer, VirtualScroll, VizWrapper, buildInputStyle, buildNavItemStyle, buildRotationMatrix, computeSlices, createToaster, describeArc, generateEdges, generateHypercube, generatePalette, generateVertices, numRotationAngles, projectTo2D, transformVec, useBarGraphScales, useHover, useHypercube, useLineGraphScales, useToast };
|
|
2108
|
+
export type { AccordionContentStyle, AccordionHeaderStyle, AccordionProps, AccordionSection, AlertProps, AnalogClockProps, AvatarProps, BadgeProps, BarDatum, BarGraphProps, BarGraphScales, BreadcrumbItem, BreadcrumbProps, BreadcrumbSize, CardProps, CarouselProps, CartesianGraph2DProps, CheckboxProps, ColorPickerProps, ColorWheelProps, ComplexGraph2DProps, ComplexPointInfo, ComputedSlice, ContextMenuItem, ContextMenuProps, DataGridColumn, DataGridProps, DatePickerProps, DigitalClockProps, DrawerPosition, DrawerProps, DropdownItem, DropdownProps, Edge, EmptyStateProps, FileUploadProps, FlexContainerProps, FlexItemProps, FormFieldWrapperProps, FormFieldWrapperStyle, GoogleAnalyticsProps, GridBreakpoint, GridItemProps, GridProps, HypercubeData, HypercubeGraphProps, ImageProps, InputBaseStyle, LegendItem, LineGraphProps, LineSeries, ListViewProps, MenuDefinition, MenuItem, MenubarProps, ModalProps, ModalSize, MultilineFieldProps, NavItemStyle, NavOrientation, NavWrapperProps, NavWrapperStyle, NumberSpinnerProps, PaginationProps, PanelProps, PieGraphProps, PieSliceDatum, Point, PointEvent, PolarGraph2DProps, PolarPointInfo, PopoverPlacement, PopoverProps, Position, ProgressBarProps, RadioGroupProps, RadioOption, ScrollContainerProps, SelectOption, SelectProps, SidebarItem, SidebarProps, SkeletonProps, SliderMark, SliderProps, SpinnerProps, SplitterProps, StackedBarDatum, StepItem, StepperOrientation, StepperProps, StepperVariant, TabDefinition, TabsProps, TagProps, TextEditorProps, TextFieldProps, TimePickerProps, ToastAction, ToastItem, ToastOptions, ToastPosition, ToastType, Toaster, ToasterConfig, ToggleProps, ToolbarButton, ToolbarItem, ToolbarProps, ToolbarSize, ToolbarVariant, TooltipPlacement, TooltipProps, TreeNavProps, TreeNodeData, UseHypercubeOptions, Vec, Vertex, VideoPlayerProps, VirtualScrollProps, VizWrapperProps };
|