@m1z23r/ngx-ui 1.1.59 → 1.1.60
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/fesm2022/m1z23r-ngx-ui.mjs +251 -1
- package/fesm2022/m1z23r-ngx-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/m1z23r-ngx-ui.d.ts +80 -12
package/package.json
CHANGED
package/types/m1z23r-ngx-ui.d.ts
CHANGED
|
@@ -1525,7 +1525,7 @@ interface DateRangeValue {
|
|
|
1525
1525
|
start: Date;
|
|
1526
1526
|
end: Date;
|
|
1527
1527
|
}
|
|
1528
|
-
type ThumbId = 'start' | 'end';
|
|
1528
|
+
type ThumbId$1 = 'start' | 'end';
|
|
1529
1529
|
declare class RangeSliderComponent {
|
|
1530
1530
|
readonly min: _angular_core.InputSignal<Date>;
|
|
1531
1531
|
readonly max: _angular_core.InputSignal<Date>;
|
|
@@ -1542,9 +1542,9 @@ declare class RangeSliderComponent {
|
|
|
1542
1542
|
protected readonly trackEl: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
1543
1543
|
protected readonly startMs: _angular_core.WritableSignal<number>;
|
|
1544
1544
|
protected readonly endMs: _angular_core.WritableSignal<number>;
|
|
1545
|
-
protected readonly dragging: _angular_core.WritableSignal<ThumbId | null>;
|
|
1546
|
-
protected readonly focusedThumb: _angular_core.WritableSignal<ThumbId | null>;
|
|
1547
|
-
protected readonly hoveredThumb: _angular_core.WritableSignal<ThumbId | null>;
|
|
1545
|
+
protected readonly dragging: _angular_core.WritableSignal<ThumbId$1 | null>;
|
|
1546
|
+
protected readonly focusedThumb: _angular_core.WritableSignal<ThumbId$1 | null>;
|
|
1547
|
+
protected readonly hoveredThumb: _angular_core.WritableSignal<ThumbId$1 | null>;
|
|
1548
1548
|
private lastEmitted;
|
|
1549
1549
|
protected readonly minMs: _angular_core.Signal<number>;
|
|
1550
1550
|
protected readonly maxMs: _angular_core.Signal<number>;
|
|
@@ -1566,15 +1566,15 @@ declare class RangeSliderComponent {
|
|
|
1566
1566
|
constructor();
|
|
1567
1567
|
/** Push current thumb state into the value model (live, during interaction). */
|
|
1568
1568
|
private writeValue;
|
|
1569
|
-
protected onThumbPointerDown(event: PointerEvent, thumb: ThumbId): void;
|
|
1570
|
-
protected onThumbPointerMove(event: PointerEvent, thumb: ThumbId): void;
|
|
1571
|
-
protected onThumbPointerUp(event: PointerEvent, thumb: ThumbId): void;
|
|
1569
|
+
protected onThumbPointerDown(event: PointerEvent, thumb: ThumbId$1): void;
|
|
1570
|
+
protected onThumbPointerMove(event: PointerEvent, thumb: ThumbId$1): void;
|
|
1571
|
+
protected onThumbPointerUp(event: PointerEvent, thumb: ThumbId$1): void;
|
|
1572
1572
|
protected onTrackPointerDown(event: PointerEvent): void;
|
|
1573
|
-
protected onThumbKeyDown(event: KeyboardEvent, thumb: ThumbId): void;
|
|
1573
|
+
protected onThumbKeyDown(event: KeyboardEvent, thumb: ThumbId$1): void;
|
|
1574
1574
|
protected onThumbKeyUp(event: KeyboardEvent): void;
|
|
1575
|
-
protected onThumbFocus(thumb: ThumbId): void;
|
|
1575
|
+
protected onThumbFocus(thumb: ThumbId$1): void;
|
|
1576
1576
|
protected onThumbBlur(): void;
|
|
1577
|
-
protected onThumbEnter(thumb: ThumbId): void;
|
|
1577
|
+
protected onThumbEnter(thumb: ThumbId$1): void;
|
|
1578
1578
|
protected onThumbLeave(): void;
|
|
1579
1579
|
private setThumb;
|
|
1580
1580
|
private commit;
|
|
@@ -1594,6 +1594,74 @@ declare class RangeSliderComponent {
|
|
|
1594
1594
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RangeSliderComponent, "ui-range-slider", never, { "min": { "alias": "min"; "required": true; "isSignal": true; }; "max": { "alias": "max"; "required": true; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "bubbles": { "alias": "bubbles"; "required": false; "isSignal": true; }; "showRange": { "alias": "showRange"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "valueCommit": "valueCommit"; }, never, never, true, never>;
|
|
1595
1595
|
}
|
|
1596
1596
|
|
|
1597
|
+
type NumberRangeSliderSize = 'sm' | 'md' | 'lg';
|
|
1598
|
+
type NumberRangeSliderBubbles = 'always' | 'active' | 'never';
|
|
1599
|
+
interface NumberRangeValue {
|
|
1600
|
+
start: number;
|
|
1601
|
+
end: number;
|
|
1602
|
+
}
|
|
1603
|
+
type ThumbId = 'start' | 'end';
|
|
1604
|
+
declare class NumberRangeSliderComponent {
|
|
1605
|
+
readonly min: _angular_core.InputSignal<number>;
|
|
1606
|
+
readonly max: _angular_core.InputSignal<number>;
|
|
1607
|
+
readonly step: _angular_core.InputSignal<number>;
|
|
1608
|
+
readonly size: _angular_core.InputSignal<NumberRangeSliderSize>;
|
|
1609
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
1610
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
1611
|
+
readonly bubbles: _angular_core.InputSignal<NumberRangeSliderBubbles>;
|
|
1612
|
+
readonly showRange: _angular_core.InputSignal<boolean>;
|
|
1613
|
+
readonly prefix: _angular_core.InputSignal<string>;
|
|
1614
|
+
readonly suffix: _angular_core.InputSignal<string>;
|
|
1615
|
+
readonly decimals: _angular_core.InputSignal<number>;
|
|
1616
|
+
readonly formatValue: _angular_core.InputSignal<((n: number) => string) | null>;
|
|
1617
|
+
readonly value: _angular_core.ModelSignal<NumberRangeValue | null>;
|
|
1618
|
+
readonly valueCommit: _angular_core.OutputEmitterRef<NumberRangeValue>;
|
|
1619
|
+
protected readonly trackEl: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
1620
|
+
protected readonly startVal: _angular_core.WritableSignal<number>;
|
|
1621
|
+
protected readonly endVal: _angular_core.WritableSignal<number>;
|
|
1622
|
+
protected readonly dragging: _angular_core.WritableSignal<ThumbId | null>;
|
|
1623
|
+
protected readonly focusedThumb: _angular_core.WritableSignal<ThumbId | null>;
|
|
1624
|
+
protected readonly hoveredThumb: _angular_core.WritableSignal<ThumbId | null>;
|
|
1625
|
+
private lastEmitted;
|
|
1626
|
+
protected readonly range: _angular_core.Signal<number>;
|
|
1627
|
+
protected readonly startPercent: _angular_core.Signal<number>;
|
|
1628
|
+
protected readonly endPercent: _angular_core.Signal<number>;
|
|
1629
|
+
protected readonly fillStyle: _angular_core.Signal<{
|
|
1630
|
+
left: string;
|
|
1631
|
+
width: string;
|
|
1632
|
+
}>;
|
|
1633
|
+
protected readonly startLabel: _angular_core.Signal<string>;
|
|
1634
|
+
protected readonly endLabel: _angular_core.Signal<string>;
|
|
1635
|
+
protected readonly bubbleVisible: _angular_core.Signal<{
|
|
1636
|
+
start: boolean;
|
|
1637
|
+
end: boolean;
|
|
1638
|
+
}>;
|
|
1639
|
+
protected readonly rootClasses: _angular_core.Signal<string>;
|
|
1640
|
+
constructor();
|
|
1641
|
+
/** Push current thumb state into the value model (live, during interaction). */
|
|
1642
|
+
private writeValue;
|
|
1643
|
+
protected onThumbPointerDown(event: PointerEvent, thumb: ThumbId): void;
|
|
1644
|
+
protected onThumbPointerMove(event: PointerEvent, thumb: ThumbId): void;
|
|
1645
|
+
protected onThumbPointerUp(event: PointerEvent, thumb: ThumbId): void;
|
|
1646
|
+
protected onTrackPointerDown(event: PointerEvent): void;
|
|
1647
|
+
protected onThumbKeyDown(event: KeyboardEvent, thumb: ThumbId): void;
|
|
1648
|
+
protected onThumbKeyUp(event: KeyboardEvent): void;
|
|
1649
|
+
protected onThumbFocus(thumb: ThumbId): void;
|
|
1650
|
+
protected onThumbBlur(): void;
|
|
1651
|
+
protected onThumbEnter(thumb: ThumbId): void;
|
|
1652
|
+
protected onThumbLeave(): void;
|
|
1653
|
+
protected effectiveStep(): number;
|
|
1654
|
+
private setThumb;
|
|
1655
|
+
private commit;
|
|
1656
|
+
private clamp;
|
|
1657
|
+
private snap;
|
|
1658
|
+
private toPercent;
|
|
1659
|
+
private pixelToVal;
|
|
1660
|
+
private format;
|
|
1661
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NumberRangeSliderComponent, never>;
|
|
1662
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NumberRangeSliderComponent, "ui-number-range-slider", never, { "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "bubbles": { "alias": "bubbles"; "required": false; "isSignal": true; }; "showRange": { "alias": "showRange"; "required": false; "isSignal": true; }; "prefix": { "alias": "prefix"; "required": false; "isSignal": true; }; "suffix": { "alias": "suffix"; "required": false; "isSignal": true; }; "decimals": { "alias": "decimals"; "required": false; "isSignal": true; }; "formatValue": { "alias": "formatValue"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "valueCommit": "valueCommit"; }, never, never, true, never>;
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1597
1665
|
type ChipInputVariant = 'default' | 'outlined' | 'filled';
|
|
1598
1666
|
type ChipInputSize = 'sm' | 'md' | 'lg';
|
|
1599
1667
|
/** Context provided to custom chip templates */
|
|
@@ -2524,5 +2592,5 @@ declare class TemplateInputComponent implements OnDestroy, AfterViewInit {
|
|
|
2524
2592
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TemplateInputComponent, "ui-template-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "variables": { "alias": "variables"; "required": true; "isSignal": true; }; }, { "value": "valueChange"; "variables": "variablesChange"; "variableHover": "variableHover"; }, ["popoverTemplate", "hasSuffix"], ["[uiTemplateInputSuffix]"], true, never>;
|
|
2525
2593
|
}
|
|
2526
2594
|
|
|
2527
|
-
export { AccordionComponent, AccordionHeaderDirective, AccordionItemComponent, AlertComponent, BadgeComponent, BreadcrumbComponent, BreadcrumbSeparatorDirective, ButtonComponent, CardComponent, CarouselComponent, CellTemplateDirective, CellValuePipe, CheckboxComponent, ChipInputComponent, ChipTemplateDirective, CircularProgressComponent, ContentComponent, ContextMenuDirective, DIALOG_DATA, DIALOG_REF, DatepickerComponent, DatetimepickerComponent, DialogRef, DialogService, DropdownComponent, DropdownDividerComponent, DropdownItemComponent, DropdownTriggerDirective, DynamicTabsComponent, FileChooserComponent, FilePreviewPipe, FileSizePipe, FooterComponent, ImageUploaderComponent, InputComponent, JsonTreeComponent, LOADABLE, LightboxComponent, LightboxService, LoadingDirective, LoadingService, ModalComponent, NavbarComponent, OptionComponent, OptionTemplateDirective, PaginationComponent, ProgressComponent, RadioComponent, RadioGroupComponent, RangeSliderComponent, SegmentedComponent, SelectComponent, ShellComponent, SidebarComponent, SidebarService, SidebarToggleComponent, SkeletonComponent, SliderComponent, SpinnerComponent, SplitComponent, SplitPaneComponent, StepperComponent, SwitchComponent, TAB_DATA, TAB_REF, TREE_HOST, TabActivePipe, TabComponent, TabIconDirective, TabRef, TableComponent, TabsComponent, TabsService, TemplateInputComponent, TemplateInputSuffixDirective, TextareaComponent, TimepickerComponent, ToastRef, ToastService, TooltipDirective, TreeComponent, TreeNodeComponent, Validators, VariablePopoverDirective, jsonToTreeNodes };
|
|
2528
|
-
export type { AccordionVariant, AlertVariant, AsyncSearchFn, AsyncSelectOption, BadgeSize, BadgeVariant, BreadcrumbItem, ButtonColor, ButtonSize, ButtonVariant, CardPadding, CardVariant, CarouselImage, CheckboxSize, ChipInputSize, ChipInputVariant, ChipTemplateContext, CircularProgressSize, CircularProgressVariant, DateRange, DateRangeValue, DatepickerSize, DatepickerVariant, DatepickerView, DatetimepickerSize, DatetimepickerVariant, DatetimepickerView, DialogConfig, DropdownAlign, DropdownPosition, DynamicTabConfig, DynamicTabsSize, DynamicTabsVariant, FileChooserSize, FileChooserVariant, ImageUploaderItem, InputType, JsonKind, JsonNodeMeta, JsonToTreeOptions, LightboxConfig, Loadable, ModalSize, OptionTemplateContext, PaginationSize, ProgressSize, ProgressVariant, RadioGroupOrientation, RadioGroupSize, RadioGroupVariant, RangeSliderBubbles, RangeSliderMode, RangeSliderSize, SegmentedOption, SegmentedSize, SelectSize, SelectVariant, ShellVariant, SkeletonVariant, SliderSize, SortDirection, SortState, SpinnerSize, SpinnerVariant, SplitGutterSize, SplitOrientation, SplitSizeChange, StepperStep, SwitchSize, TabRenderMode, TableColumn, TabsSize, TabsVariant, TemplateVariable, TextareaResize, TimeFormat, TimeValue, TimepickerSize, TimepickerVariant, ToastConfig, ToastPosition, ToastVariant, TooltipPosition, TreeDropPosition, TreeFormatter, TreeLabelToken, TreeNode, TreeNodeActionType, TreeNodeContextAction, TreeNodeDropEvent, ValidationError, ValidationState, ValidatorFn, VariablePopoverContext, VariableState };
|
|
2595
|
+
export { AccordionComponent, AccordionHeaderDirective, AccordionItemComponent, AlertComponent, BadgeComponent, BreadcrumbComponent, BreadcrumbSeparatorDirective, ButtonComponent, CardComponent, CarouselComponent, CellTemplateDirective, CellValuePipe, CheckboxComponent, ChipInputComponent, ChipTemplateDirective, CircularProgressComponent, ContentComponent, ContextMenuDirective, DIALOG_DATA, DIALOG_REF, DatepickerComponent, DatetimepickerComponent, DialogRef, DialogService, DropdownComponent, DropdownDividerComponent, DropdownItemComponent, DropdownTriggerDirective, DynamicTabsComponent, FileChooserComponent, FilePreviewPipe, FileSizePipe, FooterComponent, ImageUploaderComponent, InputComponent, JsonTreeComponent, LOADABLE, LightboxComponent, LightboxService, LoadingDirective, LoadingService, ModalComponent, NavbarComponent, NumberRangeSliderComponent, OptionComponent, OptionTemplateDirective, PaginationComponent, ProgressComponent, RadioComponent, RadioGroupComponent, RangeSliderComponent, SegmentedComponent, SelectComponent, ShellComponent, SidebarComponent, SidebarService, SidebarToggleComponent, SkeletonComponent, SliderComponent, SpinnerComponent, SplitComponent, SplitPaneComponent, StepperComponent, SwitchComponent, TAB_DATA, TAB_REF, TREE_HOST, TabActivePipe, TabComponent, TabIconDirective, TabRef, TableComponent, TabsComponent, TabsService, TemplateInputComponent, TemplateInputSuffixDirective, TextareaComponent, TimepickerComponent, ToastRef, ToastService, TooltipDirective, TreeComponent, TreeNodeComponent, Validators, VariablePopoverDirective, jsonToTreeNodes };
|
|
2596
|
+
export type { AccordionVariant, AlertVariant, AsyncSearchFn, AsyncSelectOption, BadgeSize, BadgeVariant, BreadcrumbItem, ButtonColor, ButtonSize, ButtonVariant, CardPadding, CardVariant, CarouselImage, CheckboxSize, ChipInputSize, ChipInputVariant, ChipTemplateContext, CircularProgressSize, CircularProgressVariant, DateRange, DateRangeValue, DatepickerSize, DatepickerVariant, DatepickerView, DatetimepickerSize, DatetimepickerVariant, DatetimepickerView, DialogConfig, DropdownAlign, DropdownPosition, DynamicTabConfig, DynamicTabsSize, DynamicTabsVariant, FileChooserSize, FileChooserVariant, ImageUploaderItem, InputType, JsonKind, JsonNodeMeta, JsonToTreeOptions, LightboxConfig, Loadable, ModalSize, NumberRangeSliderBubbles, NumberRangeSliderSize, NumberRangeValue, OptionTemplateContext, PaginationSize, ProgressSize, ProgressVariant, RadioGroupOrientation, RadioGroupSize, RadioGroupVariant, RangeSliderBubbles, RangeSliderMode, RangeSliderSize, SegmentedOption, SegmentedSize, SelectSize, SelectVariant, ShellVariant, SkeletonVariant, SliderSize, SortDirection, SortState, SpinnerSize, SpinnerVariant, SplitGutterSize, SplitOrientation, SplitSizeChange, StepperStep, SwitchSize, TabRenderMode, TableColumn, TabsSize, TabsVariant, TemplateVariable, TextareaResize, TimeFormat, TimeValue, TimepickerSize, TimepickerVariant, ToastConfig, ToastPosition, ToastVariant, TooltipPosition, TreeDropPosition, TreeFormatter, TreeLabelToken, TreeNode, TreeNodeActionType, TreeNodeContextAction, TreeNodeDropEvent, ValidationError, ValidationState, ValidatorFn, VariablePopoverContext, VariableState };
|