@segmentify/ui 0.0.44 → 0.0.46
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/components/atoms/dialog.d.ts +2 -1
- package/dist/index.d.ts +1 -1
- package/dist/segmentify-ui.cjs +3 -3
- package/dist/segmentify-ui.js +14 -16
- package/dist/ui.css +4 -3
- package/package.json +1 -1
|
@@ -5,8 +5,9 @@ declare function DialogTrigger({ ...props }: React.ComponentProps<typeof DialogP
|
|
|
5
5
|
declare function DialogPortal({ ...props }: React.ComponentProps<typeof DialogPrimitive.Portal>): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
declare function DialogClose({ ...props }: React.ComponentProps<typeof DialogPrimitive.Close>): import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
declare function DialogOverlay({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Overlay>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
declare function DialogContent({ className, children, showCloseButton, ...props }: React.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
8
|
+
declare function DialogContent({ className, children, showCloseButton, overlayClassName, ...props }: React.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
9
9
|
showCloseButton?: boolean;
|
|
10
|
+
overlayClassName?: string;
|
|
10
11
|
}): import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
declare function DialogHeader({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
declare function DialogFooter({ className, ...props }: React.ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, Comman
|
|
|
18
18
|
export { ContentWrapper } from './components/atoms/content-wrapper';
|
|
19
19
|
export { CreatableActionIcons } from './components/molecules/creatable-action-icons';
|
|
20
20
|
export { CheckboxField } from './components/molecules/checkbox-field';
|
|
21
|
-
export { ComboboxField } from './components/molecules/combobox-field';
|
|
21
|
+
export { ComboboxField, type ComboboxFieldItem, type ComboboxFieldInputMode, } from './components/molecules/combobox-field';
|
|
22
22
|
export { FormattedDate } from './components/atoms/date';
|
|
23
23
|
export { DateRangePicker } from './components/molecules/date-range-picker';
|
|
24
24
|
export { DebouncedInput } from './components/molecules/debounced-input';
|