@avento-space/ts-ui 1.2.7 → 1.2.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/{card.wc-CLzyZAbJ.d.ts → card.wc-DLPdvg8-.d.ts} +15 -4
- package/dist/{chunk-EDV6KYRZ.js → chunk-AZSJNOZV.js} +220 -107
- package/dist/chunk-AZSJNOZV.js.map +1 -0
- package/dist/{chunk-2FE7DEDS.js → chunk-T6CK3AHK.js} +4 -4
- package/dist/{chunk-2FE7DEDS.js.map → chunk-T6CK3AHK.js.map} +1 -1
- package/dist/{chunk-XN2J666Y.js → chunk-UVAJNPHY.js} +36 -12
- package/dist/chunk-UVAJNPHY.js.map +1 -0
- package/dist/{chunk-C4GTD5ZH.js → chunk-Y7T4LQZE.js} +3 -3
- package/dist/{chunk-C4GTD5ZH.js.map → chunk-Y7T4LQZE.js.map} +1 -1
- package/dist/components/index.d.ts +2 -2
- package/dist/components/index.js +2 -2
- package/dist/define.js +4 -4
- package/dist/icons/index.js +2 -2
- package/dist/{index-DaqSE01_.d.ts → index-Bso7lFao.d.ts} +3 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -4
- package/dist/react/index.d.ts +4 -2
- package/dist/react/index.js +137 -21
- package/dist/react/index.js.map +1 -1
- package/package.json +2 -2
- package/dist/chunk-EDV6KYRZ.js.map +0 -1
- package/dist/chunk-XN2J666Y.js.map +0 -1
|
@@ -158,9 +158,6 @@ declare class UPortal extends HTMLElement {
|
|
|
158
158
|
private _container;
|
|
159
159
|
private _observer;
|
|
160
160
|
constructor();
|
|
161
|
-
static get observedAttributes(): string[];
|
|
162
|
-
get target(): string | null;
|
|
163
|
-
set target(val: string | null);
|
|
164
161
|
connectedCallback(): void;
|
|
165
162
|
disconnectedCallback(): void;
|
|
166
163
|
attributeChangedCallback(name: string, oldVal: string | null, newVal: string | null): void;
|
|
@@ -312,6 +309,7 @@ declare class UDismissableLayer extends UElement {
|
|
|
312
309
|
connectedCallback(): void;
|
|
313
310
|
disconnectedCallback(): void;
|
|
314
311
|
attributeChangedCallback(name: string, oldVal: string | null, newVal: string | null): void;
|
|
312
|
+
private _sync;
|
|
315
313
|
private _enable;
|
|
316
314
|
private _disable;
|
|
317
315
|
_mount(): void;
|
|
@@ -523,6 +521,7 @@ declare class UHoverable extends UElement {
|
|
|
523
521
|
set disabled(val: boolean);
|
|
524
522
|
connectedCallback(): void;
|
|
525
523
|
attributeChangedCallback(name: string, oldVal: string | null, newVal: string | null): void;
|
|
524
|
+
private _sync;
|
|
526
525
|
_mount(): void;
|
|
527
526
|
}
|
|
528
527
|
|
|
@@ -630,6 +629,9 @@ declare class UTooltipRoot extends UElement {
|
|
|
630
629
|
private _disabled;
|
|
631
630
|
private _showTimeout;
|
|
632
631
|
private _hideTimeout;
|
|
632
|
+
private _tipEl;
|
|
633
|
+
private _triggerEl;
|
|
634
|
+
private _arrowEl;
|
|
633
635
|
constructor();
|
|
634
636
|
get content(): string;
|
|
635
637
|
set content(val: string);
|
|
@@ -638,6 +640,7 @@ declare class UTooltipRoot extends UElement {
|
|
|
638
640
|
get delay(): number;
|
|
639
641
|
set delay(val: number);
|
|
640
642
|
connectedCallback(): void;
|
|
643
|
+
disconnectedCallback(): void;
|
|
641
644
|
attributeChangedCallback(name: string, oldVal: string | null, newVal: string | null): void;
|
|
642
645
|
private _sync;
|
|
643
646
|
show(): void;
|
|
@@ -1171,6 +1174,9 @@ declare class UPopover extends UElement {
|
|
|
1171
1174
|
private _offset;
|
|
1172
1175
|
private _closeOnEscape;
|
|
1173
1176
|
private _closeOnOutsideClick;
|
|
1177
|
+
private _popoverEl;
|
|
1178
|
+
private _triggerEl;
|
|
1179
|
+
private _arrowEl;
|
|
1174
1180
|
constructor();
|
|
1175
1181
|
get open(): boolean;
|
|
1176
1182
|
set open(val: boolean);
|
|
@@ -1180,6 +1186,7 @@ declare class UPopover extends UElement {
|
|
|
1180
1186
|
closePopover(): void;
|
|
1181
1187
|
toggle(): void;
|
|
1182
1188
|
connectedCallback(): void;
|
|
1189
|
+
disconnectedCallback(): void;
|
|
1183
1190
|
attributeChangedCallback(name: string, oldVal: string | null, newVal: string | null): void;
|
|
1184
1191
|
private _sync;
|
|
1185
1192
|
private _updateOpenState;
|
|
@@ -1230,6 +1237,7 @@ declare class UDropdown extends UElement {
|
|
|
1230
1237
|
closeDropdown(): void;
|
|
1231
1238
|
toggle(): void;
|
|
1232
1239
|
connectedCallback(): void;
|
|
1240
|
+
disconnectedCallback(): void;
|
|
1233
1241
|
attributeChangedCallback(name: string, oldVal: string | null, newVal: string | null): void;
|
|
1234
1242
|
private _sync;
|
|
1235
1243
|
private _renderItems;
|
|
@@ -1499,10 +1507,13 @@ declare class UContextMenu extends UElement {
|
|
|
1499
1507
|
private _items;
|
|
1500
1508
|
private _open;
|
|
1501
1509
|
private _selectedIndex;
|
|
1510
|
+
private _menuEl;
|
|
1511
|
+
private _itemsContainer;
|
|
1502
1512
|
constructor();
|
|
1503
1513
|
get items(): ContextMenuItem[];
|
|
1504
1514
|
set items(val: ContextMenuItem[]);
|
|
1505
1515
|
connectedCallback(): void;
|
|
1516
|
+
disconnectedCallback(): void;
|
|
1506
1517
|
attributeChangedCallback(name: string, oldVal: string | null, newVal: string | null): void;
|
|
1507
1518
|
private _parseSlotItems;
|
|
1508
1519
|
private _renderItems;
|
|
@@ -1624,4 +1635,4 @@ declare class UCard extends UElement {
|
|
|
1624
1635
|
_mount(): void;
|
|
1625
1636
|
}
|
|
1626
1637
|
|
|
1627
|
-
export { type
|
|
1638
|
+
export { type TransitionProps as $, type AccordionProps as A, type BadgeProps as B, type CalendarProps as C, type DataTableProps as D, type PressableProps as E, type FieldProps as F, type GridProps as G, type HoverableProps as H, type InputProps as I, type RouterViewProps as J, type KeyboardNavigationProps as K, type LabelProps as L, type ModalProps as M, type SelectProps as N, type OverlayProps as O, type PopoverProps as P, type SortableProps as Q, type RadioGroupProps as R, type StackProps as S, type SpacerProps as T, type SwitchProps as U, type TableProps as V, type TabsProps as W, type TextProps as X, type TextareaProps as Y, type ToastProps as Z, type TooltipRootProps as _, type AnimateProps as a, UModal as a$, type TreeProps as a0, type VirtualListProps as a1, type VisuallyHiddenProps as a2, type AccordionItemProps as a3, type AnimatePreset as a4, type BadgeSize as a5, type BadgeVariant as a6, type BoxAs as a7, type BreadcrumbItem as a8, type CardPadding as a9, UCalendar as aA, UCard as aB, UCheckbox as aC, UCollection as aD, UCombobox as aE, UCommandPalette as aF, UContainer as aG, UContextMenu as aH, UDataTable as aI, UDialogRoot as aJ, UDismissableLayer as aK, UDrawer as aL, UDropdown as aM, UField as aN, UFocusManager as aO, UFocusScope as aP, UFocusTrap as aQ, UForm as aR, UGrid as aS, UHStack as aT, UHoverable as aU, UInput as aV, UKeyboardNavigation as aW, ULabel as aX, ULink as aY, UList as aZ, ULiveRegion as a_, type CardVariant as aa, type CollectionSelection as ab, type ComboboxOption as ac, type CommandItem as ad, type DataTableColumn as ae, type DrawerSide as af, type DropdownItem as ag, type LiveRegionPoliteness as ah, type PopperPlacement as ai, type PresenceAnimation as aj, type RadioProps as ak, type SelectOption as al, type TableColumn as am, type TextColor as an, type TextSize as ao, type TextWeight as ap, type ToastOptions as aq, type TransitionType as ar, type TreeNodeData as as, UAccordion as at, UAccordionItem as au, UAnimate as av, UBadge as aw, UBox as ax, UBreadcrumb as ay, UButton as az, type BoxProps as b, UOverlay as b0, UPopover as b1, UPopper as b2, UPortal as b3, UPresence as b4, UPressable as b5, URadio as b6, URadioGroup as b7, URouterView as b8, USelect as b9, USortable as ba, USpacer as bb, UStack as bc, USwitch as bd, UTable as be, UTabs as bf, UText as bg, UTextarea as bh, UToast as bi, UTooltipRoot as bj, UTransition as bk, UTree as bl, UVirtualList as bm, UVisuallyHidden as bn, createControlledInput as bo, setPortalRoot as bp, type BreadcrumbProps as c, type ButtonProps as d, type CardProps as e, type CheckboxProps as f, type CollectionProps as g, type ComboboxProps as h, type CommandPaletteProps as i, type ContainerProps as j, type ContextMenuProps as k, type ContextMenuItem as l, type DialogRootProps as m, type DismissableLayerProps as n, type DrawerProps as o, type DropdownProps as p, type FocusManagerProps as q, type FocusScopeProps as r, type FocusTrapProps as s, type FormProps as t, type LinkProps as u, type ListProps as v, type LiveRegionProps as w, type PopperProps as x, type PortalProps as y, type PresenceProps as z };
|