orbiq-neural-ui-kit 1.2.36 → 1.2.38
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.
|
@@ -510,7 +510,9 @@ class NeuralButtonComponent {
|
|
|
510
510
|
red: 'text-ink-red-7 bg-surface-base border border-outline-red-1 hover:border-outline-red-3 active:border-outline-red-3 active:bg-surface-red-3',
|
|
511
511
|
};
|
|
512
512
|
const ghostClasses = {
|
|
513
|
-
gray:
|
|
513
|
+
gray: this.iconOnly()
|
|
514
|
+
? 'text-ink-gray-6 bg-transparent hover:bg-surface-gray-2 hover:text-ink-gray-9 active:bg-surface-gray-3'
|
|
515
|
+
: 'text-ink-gray-8 bg-transparent hover:bg-surface-gray-3 active:bg-surface-gray-4',
|
|
514
516
|
blue: 'text-ink-blue-5 bg-transparent hover:bg-surface-blue-3 active:bg-surface-blue-4',
|
|
515
517
|
green: 'text-ink-green-8 bg-transparent hover:bg-surface-green-3 active:bg-surface-green-4',
|
|
516
518
|
red: 'text-ink-red-7 bg-transparent hover:bg-surface-red-3 active:bg-surface-red-4',
|
|
@@ -550,13 +552,13 @@ class NeuralButtonComponent {
|
|
|
550
552
|
const stateClasses = this.disabled() ? disabledClasses : variantClasses;
|
|
551
553
|
const sizeClasses = this.iconOnly()
|
|
552
554
|
? {
|
|
553
|
-
xs: 'h-6 w-6 rounded-
|
|
554
|
-
sm: 'h-7 w-7 rounded-
|
|
555
|
-
md: 'h-10 w-10 rounded-
|
|
556
|
-
lg: 'h-12 w-12 rounded-
|
|
557
|
-
xl: 'h-14 w-14 rounded-
|
|
558
|
-
'2xl': 'h-16 w-16 rounded-
|
|
559
|
-
'3xl': 'h-20 w-20 rounded-
|
|
555
|
+
xs: 'h-6 w-6 rounded-md',
|
|
556
|
+
sm: 'h-7 w-7 rounded-md',
|
|
557
|
+
md: 'h-10 w-10 rounded-md',
|
|
558
|
+
lg: 'h-12 w-12 rounded-md',
|
|
559
|
+
xl: 'h-14 w-14 rounded-md',
|
|
560
|
+
'2xl': 'h-16 w-16 rounded-md',
|
|
561
|
+
'3xl': 'h-20 w-20 rounded-md',
|
|
560
562
|
}[s]
|
|
561
563
|
: {
|
|
562
564
|
xs: 'h-6 text-xs px-1.5 rounded-3',
|
|
@@ -586,7 +588,7 @@ class NeuralButtonComponent {
|
|
|
586
588
|
<button
|
|
587
589
|
[type]="type()"
|
|
588
590
|
[disabled]="isDisabled()"
|
|
589
|
-
[class]="'w-full ' + computedClasses()"
|
|
591
|
+
[class]="(iconOnly() ? '' : 'w-full ') + computedClasses()"
|
|
590
592
|
(click)="onClick($event)"
|
|
591
593
|
[attr.aria-busy]="loading() ? 'true' : null"
|
|
592
594
|
>
|
|
@@ -630,7 +632,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
|
|
|
630
632
|
<button
|
|
631
633
|
[type]="type()"
|
|
632
634
|
[disabled]="isDisabled()"
|
|
633
|
-
[class]="'w-full ' + computedClasses()"
|
|
635
|
+
[class]="(iconOnly() ? '' : 'w-full ') + computedClasses()"
|
|
634
636
|
(click)="onClick($event)"
|
|
635
637
|
[attr.aria-busy]="loading() ? 'true' : null"
|
|
636
638
|
>
|
|
@@ -4625,6 +4627,9 @@ class NeuralDropdownComponent {
|
|
|
4625
4627
|
<i [class]="option.icon" class="size-4 text-ink-gray-5"></i>
|
|
4626
4628
|
}
|
|
4627
4629
|
{{ option.label }}
|
|
4630
|
+
@if (option.shortcut) {
|
|
4631
|
+
<span class="ml-auto text-xs text-ink-gray-5 font-mono tracking-wider">{{ option.shortcut }}</span>
|
|
4632
|
+
}
|
|
4628
4633
|
</a>
|
|
4629
4634
|
} @else {
|
|
4630
4635
|
<button
|
|
@@ -4638,6 +4643,9 @@ class NeuralDropdownComponent {
|
|
|
4638
4643
|
<i [class]="option.icon" class="size-4 text-ink-gray-5"></i>
|
|
4639
4644
|
}
|
|
4640
4645
|
{{ option.label }}
|
|
4646
|
+
@if (option.shortcut) {
|
|
4647
|
+
<span class="ml-auto text-xs text-ink-gray-5 font-mono tracking-wider">{{ option.shortcut }}</span>
|
|
4648
|
+
}
|
|
4641
4649
|
</button>
|
|
4642
4650
|
}
|
|
4643
4651
|
}
|
|
@@ -4715,6 +4723,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
|
|
|
4715
4723
|
<i [class]="option.icon" class="size-4 text-ink-gray-5"></i>
|
|
4716
4724
|
}
|
|
4717
4725
|
{{ option.label }}
|
|
4726
|
+
@if (option.shortcut) {
|
|
4727
|
+
<span class="ml-auto text-xs text-ink-gray-5 font-mono tracking-wider">{{ option.shortcut }}</span>
|
|
4728
|
+
}
|
|
4718
4729
|
</a>
|
|
4719
4730
|
} @else {
|
|
4720
4731
|
<button
|
|
@@ -4728,6 +4739,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
|
|
|
4728
4739
|
<i [class]="option.icon" class="size-4 text-ink-gray-5"></i>
|
|
4729
4740
|
}
|
|
4730
4741
|
{{ option.label }}
|
|
4742
|
+
@if (option.shortcut) {
|
|
4743
|
+
<span class="ml-auto text-xs text-ink-gray-5 font-mono tracking-wider">{{ option.shortcut }}</span>
|
|
4744
|
+
}
|
|
4731
4745
|
</button>
|
|
4732
4746
|
}
|
|
4733
4747
|
}
|
|
@@ -12799,7 +12813,7 @@ class NeuralDataTableComponent {
|
|
|
12799
12813
|
|
|
12800
12814
|
<!-- Right: Actions Toolbar -->
|
|
12801
12815
|
@if (viewMode() === 'list') {
|
|
12802
|
-
<div class="flex items-center gap-
|
|
12816
|
+
<div class="flex items-center gap-2">
|
|
12803
12817
|
|
|
12804
12818
|
<!-- Built-in Actions Group (Clean, no background) -->
|
|
12805
12819
|
<div class="flex items-center gap-0.5">
|
|
@@ -13036,7 +13050,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
|
|
|
13036
13050
|
|
|
13037
13051
|
<!-- Right: Actions Toolbar -->
|
|
13038
13052
|
@if (viewMode() === 'list') {
|
|
13039
|
-
<div class="flex items-center gap-
|
|
13053
|
+
<div class="flex items-center gap-2">
|
|
13040
13054
|
|
|
13041
13055
|
<!-- Built-in Actions Group (Clean, no background) -->
|
|
13042
13056
|
<div class="flex items-center gap-0.5">
|
|
@@ -14640,6 +14654,97 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
|
|
|
14640
14654
|
}]
|
|
14641
14655
|
}], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], to: [{ type: i0.Input, args: [{ isSignal: true, alias: "to", required: false }] }], active: [{ type: i0.Input, args: [{ isSignal: true, alias: "active", required: false }] }], suffix: [{ type: i0.Input, args: [{ isSignal: true, alias: "suffix", required: false }] }], children: [{ type: i0.Input, args: [{ isSignal: true, alias: "children", required: false }] }], hasPrefixSlot: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasPrefixSlot", required: false }] }], hasDefaultSlot: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasDefaultSlot", required: false }] }], hasSuffixSlot: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasSuffixSlot", required: false }] }] } });
|
|
14642
14656
|
|
|
14657
|
+
class NeuralSidebarHeaderComponent {
|
|
14658
|
+
title = input.required(/* @ts-ignore */
|
|
14659
|
+
...(ngDevMode ? [{ debugName: "title" }] : /* istanbul ignore next */ []));
|
|
14660
|
+
subtitle = input('', /* @ts-ignore */
|
|
14661
|
+
...(ngDevMode ? [{ debugName: "subtitle" }] : /* istanbul ignore next */ []));
|
|
14662
|
+
appIcon = input.required(/* @ts-ignore */
|
|
14663
|
+
...(ngDevMode ? [{ debugName: "appIcon" }] : /* istanbul ignore next */ []));
|
|
14664
|
+
iconClass = input('bg-blue-500 text-white', /* @ts-ignore */
|
|
14665
|
+
...(ngDevMode ? [{ debugName: "iconClass" }] : /* istanbul ignore next */ []));
|
|
14666
|
+
menuOptions = input([], /* @ts-ignore */
|
|
14667
|
+
...(ngDevMode ? [{ debugName: "menuOptions" }] : /* istanbul ignore next */ []));
|
|
14668
|
+
sidebar = inject(NeuralSidebarComponent, { optional: true });
|
|
14669
|
+
isCollapsed = computed(() => {
|
|
14670
|
+
return this.sidebar ? this.sidebar.shouldCollapse() : false;
|
|
14671
|
+
}, /* @ts-ignore */
|
|
14672
|
+
...(ngDevMode ? [{ debugName: "isCollapsed" }] : /* istanbul ignore next */ []));
|
|
14673
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.4", ngImport: i0, type: NeuralSidebarHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
14674
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.1.4", type: NeuralSidebarHeaderComponent, isStandalone: true, selector: "neural-sidebar-header", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: true, transformFunction: null }, subtitle: { classPropertyName: "subtitle", publicName: "subtitle", isSignal: true, isRequired: false, transformFunction: null }, appIcon: { classPropertyName: "appIcon", publicName: "appIcon", isSignal: true, isRequired: true, transformFunction: null }, iconClass: { classPropertyName: "iconClass", publicName: "iconClass", isSignal: true, isRequired: false, transformFunction: null }, menuOptions: { classPropertyName: "menuOptions", publicName: "menuOptions", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
|
|
14675
|
+
<neural-dropdown [options]="menuOptions()" [hasTriggerSlot]="true" align="start" [offset]="8">
|
|
14676
|
+
<div trigger
|
|
14677
|
+
class="flex items-center gap-2 p-2 rounded-md transition-colors cursor-pointer"
|
|
14678
|
+
[class]="isCollapsed() ? 'justify-center mx-auto w-10 h-10 hover:bg-surface-gray-2' : 'hover:bg-surface-gray-2 w-full mx-2'"
|
|
14679
|
+
[attr.aria-label]="title()"
|
|
14680
|
+
[title]="isCollapsed() ? title() : null"
|
|
14681
|
+
>
|
|
14682
|
+
<!-- App Icon -->
|
|
14683
|
+
<div class="flex items-center justify-center shrink-0 size-8 rounded-md" [ngClass]="iconClass()">
|
|
14684
|
+
<i [class]="appIcon()" class="size-4.5"></i>
|
|
14685
|
+
</div>
|
|
14686
|
+
|
|
14687
|
+
<!-- Texts (Hidden when collapsed) -->
|
|
14688
|
+
<div class="flex flex-col flex-1 min-w-0 transition-all duration-200"
|
|
14689
|
+
[class]="isCollapsed() ? 'w-0 opacity-0 hidden' : 'opacity-100'"
|
|
14690
|
+
>
|
|
14691
|
+
<span class="text-[14px] font-medium text-ink-gray-9 truncate leading-tight">{{ title() }}</span>
|
|
14692
|
+
@if (subtitle()) {
|
|
14693
|
+
<span class="text-xs text-ink-gray-5 truncate leading-tight">{{ subtitle() }}</span>
|
|
14694
|
+
}
|
|
14695
|
+
</div>
|
|
14696
|
+
|
|
14697
|
+
<!-- Chevron (Hidden when collapsed) -->
|
|
14698
|
+
<div class="shrink-0 transition-all duration-200"
|
|
14699
|
+
[class]="isCollapsed() ? 'w-0 opacity-0 hidden' : 'opacity-100'"
|
|
14700
|
+
>
|
|
14701
|
+
<i class="lucide-chevron-down size-4 text-ink-gray-5"></i>
|
|
14702
|
+
</div>
|
|
14703
|
+
</div>
|
|
14704
|
+
</neural-dropdown>
|
|
14705
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: NeuralDropdownComponent, selector: "neural-dropdown", inputs: ["options", "side", "align", "offset", "buttonLabel", "hasTriggerSlot"] }] });
|
|
14706
|
+
}
|
|
14707
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImport: i0, type: NeuralSidebarHeaderComponent, decorators: [{
|
|
14708
|
+
type: Component,
|
|
14709
|
+
args: [{
|
|
14710
|
+
selector: 'neural-sidebar-header',
|
|
14711
|
+
standalone: true,
|
|
14712
|
+
imports: [CommonModule, NeuralDropdownComponent],
|
|
14713
|
+
template: `
|
|
14714
|
+
<neural-dropdown [options]="menuOptions()" [hasTriggerSlot]="true" align="start" [offset]="8">
|
|
14715
|
+
<div trigger
|
|
14716
|
+
class="flex items-center gap-2 p-2 rounded-md transition-colors cursor-pointer"
|
|
14717
|
+
[class]="isCollapsed() ? 'justify-center mx-auto w-10 h-10 hover:bg-surface-gray-2' : 'hover:bg-surface-gray-2 w-full mx-2'"
|
|
14718
|
+
[attr.aria-label]="title()"
|
|
14719
|
+
[title]="isCollapsed() ? title() : null"
|
|
14720
|
+
>
|
|
14721
|
+
<!-- App Icon -->
|
|
14722
|
+
<div class="flex items-center justify-center shrink-0 size-8 rounded-md" [ngClass]="iconClass()">
|
|
14723
|
+
<i [class]="appIcon()" class="size-4.5"></i>
|
|
14724
|
+
</div>
|
|
14725
|
+
|
|
14726
|
+
<!-- Texts (Hidden when collapsed) -->
|
|
14727
|
+
<div class="flex flex-col flex-1 min-w-0 transition-all duration-200"
|
|
14728
|
+
[class]="isCollapsed() ? 'w-0 opacity-0 hidden' : 'opacity-100'"
|
|
14729
|
+
>
|
|
14730
|
+
<span class="text-[14px] font-medium text-ink-gray-9 truncate leading-tight">{{ title() }}</span>
|
|
14731
|
+
@if (subtitle()) {
|
|
14732
|
+
<span class="text-xs text-ink-gray-5 truncate leading-tight">{{ subtitle() }}</span>
|
|
14733
|
+
}
|
|
14734
|
+
</div>
|
|
14735
|
+
|
|
14736
|
+
<!-- Chevron (Hidden when collapsed) -->
|
|
14737
|
+
<div class="shrink-0 transition-all duration-200"
|
|
14738
|
+
[class]="isCollapsed() ? 'w-0 opacity-0 hidden' : 'opacity-100'"
|
|
14739
|
+
>
|
|
14740
|
+
<i class="lucide-chevron-down size-4 text-ink-gray-5"></i>
|
|
14741
|
+
</div>
|
|
14742
|
+
</div>
|
|
14743
|
+
</neural-dropdown>
|
|
14744
|
+
`
|
|
14745
|
+
}]
|
|
14746
|
+
}], propDecorators: { title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: true }] }], subtitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "subtitle", required: false }] }], appIcon: [{ type: i0.Input, args: [{ isSignal: true, alias: "appIcon", required: true }] }], iconClass: [{ type: i0.Input, args: [{ isSignal: true, alias: "iconClass", required: false }] }], menuOptions: [{ type: i0.Input, args: [{ isSignal: true, alias: "menuOptions", required: false }] }] } });
|
|
14747
|
+
|
|
14643
14748
|
// Note: TextEditor is deprecated in Frappe UI, but migrated for faithful parity.
|
|
14644
14749
|
// For new projects, consider using the /editor module with RichTextKit.
|
|
14645
14750
|
class NeuralTextEditorComponent {
|
|
@@ -15761,5 +15866,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
|
|
|
15761
15866
|
* Generated bundle index. Do not edit.
|
|
15762
15867
|
*/
|
|
15763
15868
|
|
|
15764
|
-
export { NeuralAccordionComponent, NeuralAlertComponent, NeuralAvatarComponent, NeuralAwesomeBarComponent, NeuralAxisChartComponent, NeuralBadgeComponent, NeuralBottomSheetComponent, NeuralBreadcrumbsComponent, NeuralButtonComponent, NeuralCalendarComponent, NeuralCheckboxComponent, NeuralCodeEditorComponent, NeuralCodePreviewComponent, NeuralComboboxComponent, NeuralCommandPaletteComponent, NeuralContextMenuComponent, NeuralDataTableComponent, NeuralDatePickerComponent, NeuralDesktopShellComponent, NeuralDialogComponent, NeuralDividerComponent, NeuralDonutChartComponent, NeuralDrawerComponent, NeuralDropdownComponent, NeuralDurationComponent, NeuralEChartsComponent, NeuralEntityFormComponent, NeuralErrorMessageComponent, NeuralFileUploaderComponent, NeuralFilterBuilderComponent, NeuralFloatingWindowComponent, NeuralFooterComponent, NeuralFormControlComponent, NeuralFormLabelComponent, NeuralFunnelChartComponent, NeuralHoverCardComponent, NeuralIconComponent, NeuralInputDescriptionComponent, NeuralInputErrorComponent, NeuralInputLabelComponent, NeuralItemListRowComponent, NeuralKeyboardShortcutComponent, NeuralKeyboardShortcutsDialogComponent, NeuralLabelingWrapperComponent, NeuralListViewComponent, NeuralLoadingIndicatorComponent, NeuralLoadingTextComponent, NeuralMenuComponent, NeuralMobileNavComponent, NeuralMobileNavItemComponent, NeuralMobileShellComponent, NeuralMultiEmailInputComponent, NeuralMultiSelectComponent, NeuralNotificationCenterComponent, NeuralNumberChartComponent, NeuralPageHeaderComponent, NeuralPasswordComponent, NeuralPopoverComponent, NeuralPopoverContentDirective, NeuralPopoverPanelComponent, NeuralPopoverTriggerDirective, NeuralProgressComponent, NeuralRadioComponent, NeuralRadioGroupComponent, NeuralRailComponent, NeuralRailItemComponent, NeuralRatingComponent, NeuralRequiredIndicatorComponent, NeuralScrollAreaComponent, NeuralSearchTriggerComponent, NeuralSelectComponent, NeuralSettingsContentComponent, NeuralSettingsDialogComponent, NeuralSettingsNavItemComponent, NeuralSettingsPanelComponent, NeuralSettingsSidebarComponent, NeuralSidebarComponent, NeuralSidebarItemComponent, NeuralSkeletonComponent, NeuralSliderComponent, NeuralSpinnerComponent, NeuralSubGridComponent, NeuralSwitchComponent, NeuralTabComponent, NeuralTabPanelComponent, NeuralTabsComponent, NeuralTextEditorComponent, NeuralTextInputComponent, NeuralTextareaComponent, NeuralThemeSwitcherComponent, NeuralTimePickerComponent, NeuralToastComponent, NeuralTooltipComponent, NeuralTreeComponent, NeuralTreeItemComponent, RADIO_GROUP, TABS_ROOT, ToastService, formatDuration, parseDuration };
|
|
15869
|
+
export { NeuralAccordionComponent, NeuralAlertComponent, NeuralAvatarComponent, NeuralAwesomeBarComponent, NeuralAxisChartComponent, NeuralBadgeComponent, NeuralBottomSheetComponent, NeuralBreadcrumbsComponent, NeuralButtonComponent, NeuralCalendarComponent, NeuralCheckboxComponent, NeuralCodeEditorComponent, NeuralCodePreviewComponent, NeuralComboboxComponent, NeuralCommandPaletteComponent, NeuralContextMenuComponent, NeuralDataTableComponent, NeuralDatePickerComponent, NeuralDesktopShellComponent, NeuralDialogComponent, NeuralDividerComponent, NeuralDonutChartComponent, NeuralDrawerComponent, NeuralDropdownComponent, NeuralDurationComponent, NeuralEChartsComponent, NeuralEntityFormComponent, NeuralErrorMessageComponent, NeuralFileUploaderComponent, NeuralFilterBuilderComponent, NeuralFloatingWindowComponent, NeuralFooterComponent, NeuralFormControlComponent, NeuralFormLabelComponent, NeuralFunnelChartComponent, NeuralHoverCardComponent, NeuralIconComponent, NeuralInputDescriptionComponent, NeuralInputErrorComponent, NeuralInputLabelComponent, NeuralItemListRowComponent, NeuralKeyboardShortcutComponent, NeuralKeyboardShortcutsDialogComponent, NeuralLabelingWrapperComponent, NeuralListViewComponent, NeuralLoadingIndicatorComponent, NeuralLoadingTextComponent, NeuralMenuComponent, NeuralMobileNavComponent, NeuralMobileNavItemComponent, NeuralMobileShellComponent, NeuralMultiEmailInputComponent, NeuralMultiSelectComponent, NeuralNotificationCenterComponent, NeuralNumberChartComponent, NeuralPageHeaderComponent, NeuralPasswordComponent, NeuralPopoverComponent, NeuralPopoverContentDirective, NeuralPopoverPanelComponent, NeuralPopoverTriggerDirective, NeuralProgressComponent, NeuralRadioComponent, NeuralRadioGroupComponent, NeuralRailComponent, NeuralRailItemComponent, NeuralRatingComponent, NeuralRequiredIndicatorComponent, NeuralScrollAreaComponent, NeuralSearchTriggerComponent, NeuralSelectComponent, NeuralSettingsContentComponent, NeuralSettingsDialogComponent, NeuralSettingsNavItemComponent, NeuralSettingsPanelComponent, NeuralSettingsSidebarComponent, NeuralSidebarComponent, NeuralSidebarHeaderComponent, NeuralSidebarItemComponent, NeuralSkeletonComponent, NeuralSliderComponent, NeuralSpinnerComponent, NeuralSubGridComponent, NeuralSwitchComponent, NeuralTabComponent, NeuralTabPanelComponent, NeuralTabsComponent, NeuralTextEditorComponent, NeuralTextInputComponent, NeuralTextareaComponent, NeuralThemeSwitcherComponent, NeuralTimePickerComponent, NeuralToastComponent, NeuralTooltipComponent, NeuralTreeComponent, NeuralTreeItemComponent, RADIO_GROUP, TABS_ROOT, ToastService, formatDuration, parseDuration };
|
|
15765
15870
|
//# sourceMappingURL=orbiq-neural-ui-kit.mjs.map
|