@basis-ng/primitives 0.0.1-alpha.143 → 0.0.1-alpha.145
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.
|
@@ -1465,13 +1465,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.8", ngImpor
|
|
|
1465
1465
|
}], ctorParameters: () => [] });
|
|
1466
1466
|
|
|
1467
1467
|
/**
|
|
1468
|
-
* A draggable
|
|
1468
|
+
* A draggable floating drawer that can slide from any side.
|
|
1469
1469
|
*/
|
|
1470
1470
|
class Drawer {
|
|
1471
1471
|
/**
|
|
1472
1472
|
* Model indicating whether the drawer is open.
|
|
1473
1473
|
*/
|
|
1474
1474
|
isOpen = model(false, ...(ngDevMode ? [{ debugName: "isOpen" }] : []));
|
|
1475
|
+
/**
|
|
1476
|
+
* Side of the viewport the drawer appears from.
|
|
1477
|
+
*/
|
|
1478
|
+
side = input('bottom', ...(ngDevMode ? [{ debugName: "side" }] : []));
|
|
1479
|
+
/**
|
|
1480
|
+
* Whether the drawer can be dragged closed.
|
|
1481
|
+
*/
|
|
1482
|
+
draggable = input(true, { ...(ngDevMode ? { debugName: "draggable" } : {}), transform: booleanAttribute });
|
|
1475
1483
|
/**
|
|
1476
1484
|
* Emitted when the sheet is closed.
|
|
1477
1485
|
*/
|
|
@@ -1481,25 +1489,25 @@ class Drawer {
|
|
|
1481
1489
|
*/
|
|
1482
1490
|
isDragging = signal(false, ...(ngDevMode ? [{ debugName: "isDragging" }] : []));
|
|
1483
1491
|
/**
|
|
1484
|
-
* Starting
|
|
1492
|
+
* Starting pointer coordinate for the active drag axis.
|
|
1485
1493
|
*/
|
|
1486
|
-
|
|
1494
|
+
startOffset = signal(0, ...(ngDevMode ? [{ debugName: "startOffset" }] : []));
|
|
1487
1495
|
/**
|
|
1488
|
-
* Current
|
|
1496
|
+
* Current close progress of the drawer, from 0 (open) to 100 (closed).
|
|
1489
1497
|
*/
|
|
1490
|
-
|
|
1498
|
+
dragProgress = signal(100, ...(ngDevMode ? [{ debugName: "dragProgress" }] : []));
|
|
1491
1499
|
/**
|
|
1492
|
-
*
|
|
1500
|
+
* Drag threshold (percentage) to trigger close on release.
|
|
1493
1501
|
*/
|
|
1494
1502
|
closeThreshold = input(30, ...(ngDevMode ? [{ debugName: "closeThreshold" }] : []));
|
|
1495
1503
|
/**
|
|
1496
1504
|
* Computed CSS transform for the drawer based on drag/open state.
|
|
1497
1505
|
*/
|
|
1498
|
-
transform = computed(() => this.
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1506
|
+
transform = computed(() => this.getTransform(this.currentProgress()), ...(ngDevMode ? [{ debugName: "transform" }] : []));
|
|
1507
|
+
/**
|
|
1508
|
+
* Current progress to use for the rendered transform.
|
|
1509
|
+
*/
|
|
1510
|
+
currentProgress = computed(() => this.isDragging() ? this.dragProgress() : this.isOpen() ? 0 : 100, ...(ngDevMode ? [{ debugName: "currentProgress" }] : []));
|
|
1503
1511
|
/**
|
|
1504
1512
|
* Element reference to the host component.
|
|
1505
1513
|
*/
|
|
@@ -1521,26 +1529,28 @@ class Drawer {
|
|
|
1521
1529
|
if (target.closest('.cdk-overlay-container')) {
|
|
1522
1530
|
return;
|
|
1523
1531
|
}
|
|
1524
|
-
|
|
1525
|
-
this.isOpen.set(false);
|
|
1526
|
-
this.closeSheet.emit();
|
|
1532
|
+
this.close();
|
|
1527
1533
|
}
|
|
1528
1534
|
/**
|
|
1529
1535
|
* Begin tracking pointer movement for drag-to-dismiss.
|
|
1530
1536
|
* @param event - Pointer down event.
|
|
1531
1537
|
*/
|
|
1532
1538
|
startDrag(event) {
|
|
1539
|
+
if (!this.draggable()) {
|
|
1540
|
+
return;
|
|
1541
|
+
}
|
|
1542
|
+
event.preventDefault();
|
|
1533
1543
|
this.isDragging.set(true);
|
|
1534
|
-
this.
|
|
1535
|
-
|
|
1536
|
-
this.translateY.set(this.isOpen() ? 0 : 100);
|
|
1537
|
-
// Disable text selection for better UX
|
|
1544
|
+
this.startOffset.set(this.getPointerOffset(event));
|
|
1545
|
+
this.dragProgress.set(this.isOpen() ? 0 : 100);
|
|
1538
1546
|
document.body.style.userSelect = 'none';
|
|
1539
|
-
const move = (e) =>
|
|
1547
|
+
const move = (e) => {
|
|
1548
|
+
e.preventDefault();
|
|
1549
|
+
this.updateDrag(e);
|
|
1550
|
+
};
|
|
1540
1551
|
const end = () => {
|
|
1541
1552
|
this.isDragging.set(false);
|
|
1542
1553
|
this.snapToOpenOrClose();
|
|
1543
|
-
// Restore text selection
|
|
1544
1554
|
document.body.style.userSelect = '';
|
|
1545
1555
|
window.removeEventListener('pointermove', move);
|
|
1546
1556
|
window.removeEventListener('pointerup', end);
|
|
@@ -1550,32 +1560,79 @@ class Drawer {
|
|
|
1550
1560
|
}
|
|
1551
1561
|
/**
|
|
1552
1562
|
* Update drawer position during drag.
|
|
1553
|
-
* @param
|
|
1554
|
-
*/
|
|
1555
|
-
updateDrag(
|
|
1556
|
-
const
|
|
1557
|
-
const
|
|
1558
|
-
|
|
1559
|
-
const
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1563
|
+
* @param event - Current pointer event.
|
|
1564
|
+
*/
|
|
1565
|
+
updateDrag(event) {
|
|
1566
|
+
const host = this.el.nativeElement;
|
|
1567
|
+
const pointerOffset = this.getPointerOffset(event);
|
|
1568
|
+
const deltaPx = (pointerOffset - this.startOffset()) * this.getCloseDirection();
|
|
1569
|
+
const size = this.isHorizontal() ? host.offsetWidth : host.offsetHeight;
|
|
1570
|
+
if (!size) {
|
|
1571
|
+
return;
|
|
1572
|
+
}
|
|
1573
|
+
const deltaPercent = (deltaPx / size) * 100;
|
|
1574
|
+
const nextProgress = Math.min(100, Math.max(0, deltaPercent));
|
|
1575
|
+
this.dragProgress.set(nextProgress);
|
|
1576
|
+
}
|
|
1577
|
+
/**
|
|
1564
1578
|
* Snap the drawer to open or closed based on threshold.
|
|
1565
1579
|
*/
|
|
1566
1580
|
snapToOpenOrClose() {
|
|
1567
|
-
if (this.
|
|
1568
|
-
this.
|
|
1581
|
+
if (this.dragProgress() > this.closeThreshold()) {
|
|
1582
|
+
this.close();
|
|
1569
1583
|
}
|
|
1570
1584
|
else {
|
|
1571
1585
|
this.isOpen.set(true);
|
|
1572
1586
|
}
|
|
1573
1587
|
}
|
|
1588
|
+
/**
|
|
1589
|
+
* Closes the drawer and emits the close event.
|
|
1590
|
+
*/
|
|
1591
|
+
close() {
|
|
1592
|
+
this.isOpen.set(false);
|
|
1593
|
+
this.closeSheet.emit();
|
|
1594
|
+
}
|
|
1595
|
+
/**
|
|
1596
|
+
* Maps the current side to the transform axis and sign.
|
|
1597
|
+
*/
|
|
1598
|
+
getTransform(progress) {
|
|
1599
|
+
switch (this.side()) {
|
|
1600
|
+
case 'top':
|
|
1601
|
+
return `translateY(-${progress}%)`;
|
|
1602
|
+
case 'left':
|
|
1603
|
+
return `translateX(-${progress}%)`;
|
|
1604
|
+
case 'right':
|
|
1605
|
+
return `translateX(${progress}%)`;
|
|
1606
|
+
case 'bottom':
|
|
1607
|
+
default:
|
|
1608
|
+
return `translateY(${progress}%)`;
|
|
1609
|
+
}
|
|
1610
|
+
}
|
|
1611
|
+
/**
|
|
1612
|
+
* Returns the pointer coordinate relevant to the active drag axis.
|
|
1613
|
+
*/
|
|
1614
|
+
getPointerOffset(event) {
|
|
1615
|
+
return this.isHorizontal() ? event.clientX : event.clientY;
|
|
1616
|
+
}
|
|
1617
|
+
/**
|
|
1618
|
+
* Indicates whether the drawer moves horizontally.
|
|
1619
|
+
*/
|
|
1620
|
+
isHorizontal() {
|
|
1621
|
+
return this.side() === 'left' || this.side() === 'right';
|
|
1622
|
+
}
|
|
1623
|
+
/**
|
|
1624
|
+
* Returns the positive pointer direction that closes the drawer.
|
|
1625
|
+
*/
|
|
1626
|
+
getCloseDirection() {
|
|
1627
|
+
return this.side() === 'top' || this.side() === 'left' ? -1 : 1;
|
|
1628
|
+
}
|
|
1574
1629
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.8", ngImport: i0, type: Drawer, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1575
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.
|
|
1576
|
-
|
|
1577
|
-
<div class="drag-
|
|
1578
|
-
|
|
1630
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.0.8", type: Drawer, isStandalone: true, selector: "b-drawer", inputs: { isOpen: { classPropertyName: "isOpen", publicName: "isOpen", isSignal: true, isRequired: false, transformFunction: null }, side: { classPropertyName: "side", publicName: "side", isSignal: true, isRequired: false, transformFunction: null }, draggable: { classPropertyName: "draggable", publicName: "draggable", isSignal: true, isRequired: false, transformFunction: null }, closeThreshold: { classPropertyName: "closeThreshold", publicName: "closeThreshold", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { isOpen: "isOpenChange", closeSheet: "closeSheet" }, host: { listeners: { "document:click": "closeOnOutsideClick($event)" }, properties: { "class.bottom": "side() === \"bottom\"", "class.dragging": "isDragging()", "class.left": "side() === \"left\"", "class.open": "isOpen()", "class.right": "side() === \"right\"", "class.top": "side() === \"top\"", "style.transform": "transform()" } }, ngImport: i0, template: `
|
|
1631
|
+
@if (draggable()) {
|
|
1632
|
+
<div class="drag-section" (pointerdown)="startDrag($event)">
|
|
1633
|
+
<div class="drag-indicator"></div>
|
|
1634
|
+
</div>
|
|
1635
|
+
}
|
|
1579
1636
|
<div class="drawer-content" (click)="$event.stopPropagation()">
|
|
1580
1637
|
<ng-content />
|
|
1581
1638
|
</div>
|
|
@@ -1588,20 +1645,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.8", ngImpor
|
|
|
1588
1645
|
standalone: true,
|
|
1589
1646
|
imports: [],
|
|
1590
1647
|
template: `
|
|
1591
|
-
|
|
1592
|
-
<div class="drag-
|
|
1593
|
-
|
|
1648
|
+
@if (draggable()) {
|
|
1649
|
+
<div class="drag-section" (pointerdown)="startDrag($event)">
|
|
1650
|
+
<div class="drag-indicator"></div>
|
|
1651
|
+
</div>
|
|
1652
|
+
}
|
|
1594
1653
|
<div class="drawer-content" (click)="$event.stopPropagation()">
|
|
1595
1654
|
<ng-content />
|
|
1596
1655
|
</div>
|
|
1597
1656
|
`,
|
|
1598
1657
|
host: {
|
|
1658
|
+
'[class.bottom]': 'side() === "bottom"',
|
|
1599
1659
|
'[class.dragging]': 'isDragging()',
|
|
1660
|
+
'[class.left]': 'side() === "left"',
|
|
1600
1661
|
'[class.open]': 'isOpen()',
|
|
1662
|
+
'[class.right]': 'side() === "right"',
|
|
1663
|
+
'[class.top]': 'side() === "top"',
|
|
1601
1664
|
'[style.transform]': 'transform()',
|
|
1602
1665
|
},
|
|
1603
1666
|
}]
|
|
1604
|
-
}], propDecorators: { isOpen: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOpen", required: false }] }, { type: i0.Output, args: ["isOpenChange"] }], closeSheet: [{ type: i0.Output, args: ["closeSheet"] }], closeThreshold: [{ type: i0.Input, args: [{ isSignal: true, alias: "closeThreshold", required: false }] }], closeOnOutsideClick: [{
|
|
1667
|
+
}], propDecorators: { isOpen: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOpen", required: false }] }, { type: i0.Output, args: ["isOpenChange"] }], side: [{ type: i0.Input, args: [{ isSignal: true, alias: "side", required: false }] }], draggable: [{ type: i0.Input, args: [{ isSignal: true, alias: "draggable", required: false }] }], closeSheet: [{ type: i0.Output, args: ["closeSheet"] }], closeThreshold: [{ type: i0.Input, args: [{ isSignal: true, alias: "closeThreshold", required: false }] }], closeOnOutsideClick: [{
|
|
1605
1668
|
type: HostListener,
|
|
1606
1669
|
args: ['document:click', ['$event']]
|
|
1607
1670
|
}] } });
|
|
@@ -3049,97 +3112,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.8", ngImpor
|
|
|
3049
3112
|
}]
|
|
3050
3113
|
}] });
|
|
3051
3114
|
|
|
3052
|
-
/**
|
|
3053
|
-
* Slide-in sheet panel used for side or bottom panels with optional backdrop.
|
|
3054
|
-
*/
|
|
3055
|
-
class Sheet {
|
|
3056
|
-
/**
|
|
3057
|
-
* Whether the sheet is open. Can be two-way bound.
|
|
3058
|
-
*/
|
|
3059
|
-
isOpen = model(false, ...(ngDevMode ? [{ debugName: "isOpen" }] : []));
|
|
3060
|
-
/**
|
|
3061
|
-
* Side of the sheet panel.
|
|
3062
|
-
*/
|
|
3063
|
-
side = input('right', ...(ngDevMode ? [{ debugName: "side" }] : []));
|
|
3064
|
-
/**
|
|
3065
|
-
* Whether the sheet is positioned on the right side.
|
|
3066
|
-
*/
|
|
3067
|
-
isRight = computed(() => this.side() === 'right', ...(ngDevMode ? [{ debugName: "isRight" }] : []));
|
|
3068
|
-
/**
|
|
3069
|
-
* Emitted when the sheet is closed.
|
|
3070
|
-
*/
|
|
3071
|
-
closeSheet = output();
|
|
3072
|
-
/**
|
|
3073
|
-
* Reference to the host element.
|
|
3074
|
-
*/
|
|
3075
|
-
el = inject(ElementRef);
|
|
3076
|
-
/**
|
|
3077
|
-
* Closes the sheet when clicking outside of it.
|
|
3078
|
-
*/
|
|
3079
|
-
closeOnOutsideClick(event) {
|
|
3080
|
-
if (this.isOpen() && !this.el.nativeElement.contains(event.target)) {
|
|
3081
|
-
this.isOpen.set(false);
|
|
3082
|
-
}
|
|
3083
|
-
}
|
|
3084
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.8", ngImport: i0, type: Sheet, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3085
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.8", type: Sheet, isStandalone: true, selector: "b-sheet", inputs: { isOpen: { classPropertyName: "isOpen", publicName: "isOpen", isSignal: true, isRequired: false, transformFunction: null }, side: { classPropertyName: "side", publicName: "side", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { isOpen: "isOpenChange", closeSheet: "closeSheet" }, host: { listeners: { "document:click": "closeOnOutsideClick($event)" }, properties: { "class.left": "side() === \"left\"", "class.right": "side() === \"right\"", "class.open": "isOpen()" } }, ngImport: i0, template: `
|
|
3086
|
-
<button class="close-button" (click)="isOpen.set(false)">
|
|
3087
|
-
<svg
|
|
3088
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
3089
|
-
width="20"
|
|
3090
|
-
height="20"
|
|
3091
|
-
viewBox="0 0 24 24"
|
|
3092
|
-
fill="none"
|
|
3093
|
-
stroke="currentColor"
|
|
3094
|
-
stroke-width="0.094rem"
|
|
3095
|
-
stroke-linecap="round"
|
|
3096
|
-
stroke-linejoin="round"
|
|
3097
|
-
class="lucide lucide-x"
|
|
3098
|
-
>
|
|
3099
|
-
<path d="M18 6 6 18" />
|
|
3100
|
-
<path d="m6 6 12 12" />
|
|
3101
|
-
</svg>
|
|
3102
|
-
</button>
|
|
3103
|
-
<ng-content />
|
|
3104
|
-
`, isInline: true });
|
|
3105
|
-
}
|
|
3106
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.8", ngImport: i0, type: Sheet, decorators: [{
|
|
3107
|
-
type: Component,
|
|
3108
|
-
args: [{
|
|
3109
|
-
selector: 'b-sheet',
|
|
3110
|
-
standalone: true,
|
|
3111
|
-
imports: [],
|
|
3112
|
-
template: `
|
|
3113
|
-
<button class="close-button" (click)="isOpen.set(false)">
|
|
3114
|
-
<svg
|
|
3115
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
3116
|
-
width="20"
|
|
3117
|
-
height="20"
|
|
3118
|
-
viewBox="0 0 24 24"
|
|
3119
|
-
fill="none"
|
|
3120
|
-
stroke="currentColor"
|
|
3121
|
-
stroke-width="0.094rem"
|
|
3122
|
-
stroke-linecap="round"
|
|
3123
|
-
stroke-linejoin="round"
|
|
3124
|
-
class="lucide lucide-x"
|
|
3125
|
-
>
|
|
3126
|
-
<path d="M18 6 6 18" />
|
|
3127
|
-
<path d="m6 6 12 12" />
|
|
3128
|
-
</svg>
|
|
3129
|
-
</button>
|
|
3130
|
-
<ng-content />
|
|
3131
|
-
`,
|
|
3132
|
-
host: {
|
|
3133
|
-
'[class.left]': 'side() === "left"',
|
|
3134
|
-
'[class.right]': 'side() === "right"',
|
|
3135
|
-
'[class.open]': 'isOpen()',
|
|
3136
|
-
},
|
|
3137
|
-
}]
|
|
3138
|
-
}], propDecorators: { isOpen: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOpen", required: false }] }, { type: i0.Output, args: ["isOpenChange"] }], side: [{ type: i0.Input, args: [{ isSignal: true, alias: "side", required: false }] }], closeSheet: [{ type: i0.Output, args: ["closeSheet"] }], closeOnOutsideClick: [{
|
|
3139
|
-
type: HostListener,
|
|
3140
|
-
args: ['document:click', ['$event']]
|
|
3141
|
-
}] } });
|
|
3142
|
-
|
|
3143
3115
|
/**
|
|
3144
3116
|
* A spinner component to indicate loading states.
|
|
3145
3117
|
*/
|
|
@@ -3349,12 +3321,12 @@ class Tab {
|
|
|
3349
3321
|
this.tabsContainer.selectTab(this.value());
|
|
3350
3322
|
}
|
|
3351
3323
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.8", ngImport: i0, type: Tab, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3352
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.8", type: Tab, isStandalone: true, selector: "b-tab", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: true, transformFunction: null } }, host: { listeners: { "click": "onClick()" } }, hostDirectives: [{ directive: i1$3.Tab, inputs: ["value", "value"] }], ngImport: i0, template: ` <ng-content /> `, isInline: true });
|
|
3324
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.0.8", type: Tab, isStandalone: true, selector: "button[b-tab], [b-tab]", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: true, transformFunction: null } }, host: { listeners: { "click": "onClick()" } }, hostDirectives: [{ directive: i1$3.Tab, inputs: ["value", "value"] }], ngImport: i0, template: ` <ng-content /> `, isInline: true });
|
|
3353
3325
|
}
|
|
3354
3326
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.8", ngImport: i0, type: Tab, decorators: [{
|
|
3355
3327
|
type: Component,
|
|
3356
3328
|
args: [{
|
|
3357
|
-
selector: 'b-tab',
|
|
3329
|
+
selector: 'button[b-tab], [b-tab]',
|
|
3358
3330
|
imports: [],
|
|
3359
3331
|
hostDirectives: [
|
|
3360
3332
|
{
|
|
@@ -4221,5 +4193,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.8", ngImpor
|
|
|
4221
4193
|
* Generated bundle index. Do not edit.
|
|
4222
4194
|
*/
|
|
4223
4195
|
|
|
4224
|
-
export { Alert, Badge, Button, ButtonGroup, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, CommandComponent, CommandOptionsComponent, ConnectedOverlay, Dialog, DialogContent, DialogManager, Drawer, Input, InputGroup, Menu, MenuGroup, MenuItem, MenuItemCheckbox, MenuItemRadio, MenuLabel, MenuTriggerDirective, Option, Otp, OtpDigitDirective, Overlay, OverlayOrigin, OverlayTrigger, Popover, PopoverTrigger, Range, ResponsiveManager, Select, SelectContent, SelectFilter, SelectTrigger, SelectValue,
|
|
4196
|
+
export { Alert, Badge, Button, ButtonGroup, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, CommandComponent, CommandOptionsComponent, ConnectedOverlay, Dialog, DialogContent, DialogManager, Drawer, Input, InputGroup, Menu, MenuGroup, MenuItem, MenuItemCheckbox, MenuItemRadio, MenuLabel, MenuTriggerDirective, Option, Otp, OtpDigitDirective, Overlay, OverlayOrigin, OverlayTrigger, Popover, PopoverTrigger, Range, ResponsiveManager, Select, SelectContent, SelectFilter, SelectTrigger, SelectValue, Spinner, SwitchComponent, Tab, Tabs, Textarea, TextareaGroup, ThemeManager, Tooltip, TooltipContent, TooltipTrigger, TranslatePipe, TranslationManager, Tree, TreeNode, Utils };
|
|
4225
4197
|
//# sourceMappingURL=basis-ng-primitives.mjs.map
|