@qualcomm-ui/angular-core 1.0.4 → 1.0.6

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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"qualcomm-ui-angular-core-slider.mjs","sources":["../../src/slider/slider-context.service.ts","../../src/slider/slider-thumb-context.service.ts","../../src/slider/core-slider-control.directive.ts","../../src/slider/core-slider-error-text.directive.ts","../../src/slider/core-slider-hidden-input.directive.ts","../../src/slider/core-slider-hint.directive.ts","../../src/slider/core-slider-label.directive.ts","../../src/slider/core-slider-marker-group.directive.ts","../../src/slider/core-slider-marker.directive.ts","../../src/slider/core-slider-max.directive.ts","../../src/slider/core-slider-min.directive.ts","../../src/slider/core-slider-range.directive.ts","../../src/slider/core-slider-root.directive.ts","../../src/slider/core-slider-thumb-indicator.directive.ts","../../src/slider/core-slider-thumb.directive.ts","../../src/slider/core-slider-track.directive.ts","../../src/slider/core-slider-value-text.directive.ts","../../src/slider/qualcomm-ui-angular-core-slider.ts"],"sourcesContent":["// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {Injectable} from \"@angular/core\"\n\nimport {\n BaseApiContextService,\n createApiContext,\n} from \"@qualcomm-ui/angular-core/machine\"\nimport type {SliderApi} from \"@qualcomm-ui/core/slider\"\n\n@Injectable()\nexport class SliderContextService extends BaseApiContextService<SliderApi> {}\n\nexport const [SLIDER_CONTEXT, useSliderContext, provideSliderContext] =\n createApiContext<SliderApi>(\"SliderContext\", SliderContextService)\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {Injectable} from \"@angular/core\"\n\nimport {\n BaseApiContextService,\n createApiContext,\n} from \"@qualcomm-ui/angular-core/machine\"\nimport type {ThumbProps} from \"@qualcomm-ui/core/slider\"\n\n@Injectable()\nexport class SliderThumbContextService extends BaseApiContextService<ThumbProps> {}\n\nexport const [\n SLIDER_THUMB_CONTEXT,\n useSliderThumbContext,\n provideSliderThumbContext,\n] = createApiContext<ThumbProps>(\n \"SliderThumbContext\",\n SliderThumbContextService,\n)\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service\"\n\n@Directive()\nexport class CoreSliderControlDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getControlBindings({\n id: this.hostId(),\n onDestroy: this.onDestroy,\n }),\n )\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service\"\n\n@Directive()\nexport class CoreSliderErrorTextDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getErrorTextBindings({\n id: this.hostId(),\n onDestroy: this.onDestroy,\n }),\n )\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service\"\nimport {useSliderThumbContext} from \"./slider-thumb-context.service\"\n\n@Directive()\nexport class CoreSliderHiddenInputDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n protected readonly sliderThumbContext = useSliderThumbContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getHiddenInputBindings({\n id: this.hostId(),\n onDestroy: this.onDestroy,\n ...this.sliderThumbContext(),\n }),\n )\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service\"\n\n@Directive()\nexport class CoreSliderHintDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getHintBindings({\n id: this.hostId(),\n onDestroy: this.onDestroy,\n }),\n )\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service\"\n\n@Directive()\nexport class CoreSliderLabelDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getLabelBindings({\n id: this.hostId(),\n onDestroy: this.onDestroy,\n }),\n )\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service\"\n\n@Directive()\nexport class CoreSliderMarkerGroupDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getMarkerGroupBindings({\n id: this.hostId(),\n onDestroy: this.onDestroy,\n }),\n )\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service\"\n\n@Directive()\nexport class CoreSliderMarkerDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n /**\n * The value the marker should indicate.\n */\n readonly value = input.required<number>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getMarkerBindings({\n id: this.hostId(),\n onDestroy: this.onDestroy,\n value: this.value(),\n }),\n )\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service\"\n\n@Directive()\nexport class CoreSliderMaxDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() => {\n return this.sliderContext().getMaxMarkerBindings({\n id: this.hostId(),\n onDestroy: this.onDestroy,\n })\n })\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service\"\n\n@Directive()\nexport class CoreSliderMinDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getMinMarkerBindings({\n id: this.hostId(),\n onDestroy: this.onDestroy,\n }),\n )\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service\"\n\n@Directive()\nexport class CoreSliderRangeDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getRangeBindings({\n id: this.hostId(),\n onDestroy: this.onDestroy,\n }),\n )\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {DOCUMENT} from \"@angular/common\"\nimport {\n computed,\n Directive,\n inject,\n input,\n type OnInit,\n output,\n} from \"@angular/core\"\nimport {type ControlValueAccessor} from \"@angular/forms\"\n\nimport {useId, useIsMounted} from \"@qualcomm-ui/angular-core/common\"\nimport {AbstractBaseListCollectionFormControlDirective} from \"@qualcomm-ui/angular-core/input\"\nimport {\n normalizeProps,\n useMachine,\n useTrackBindings,\n} from \"@qualcomm-ui/angular-core/machine\"\nimport type {SignalifyInput} from \"@qualcomm-ui/angular-core/signals\"\nimport {\n createSliderApi,\n type FocusChangeDetails,\n type SliderApiProps,\n sliderMachine,\n type ValueChangeDetails,\n type ValueTextDetails,\n} from \"@qualcomm-ui/core/slider\"\nimport type {Direction} from \"@qualcomm-ui/utils/direction\"\nimport type {Explicit} from \"@qualcomm-ui/utils/guard\"\n\nimport {SliderContextService} from \"./slider-context.service\"\n\n@Directive()\nexport class CoreSliderRootDirective\n extends AbstractBaseListCollectionFormControlDirective<number>\n implements\n SignalifyInput<\n Omit<\n SliderApiProps,\n \"form\" | \"ids\" | \"value\" | \"aria-label\" | \"aria-labelledby\"\n >\n >,\n ControlValueAccessor,\n OnInit\n{\n /**\n * The document's text/writing direction.\n */\n readonly dir = input<Direction | undefined>()\n\n /**\n * A root node to correctly resolve the Document in custom environments. i.e.,\n * Iframes, Electron.\n */\n readonly getRootNode = input<\n (() => ShadowRoot | Document | Node) | undefined\n >()\n\n /**\n * HTML {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.)\n */\n readonly id = input<string>()\n\n /**\n * The aria-label of each slider thumb. Useful for providing an accessible name to\n * the slider\n */\n readonly ariaLabel = input<string[] | string | undefined>(undefined, {\n alias: \"aria-label\",\n })\n\n /**\n * The `id` of the elements that labels each slider thumb. Useful for providing an\n * accessible name to the slider\n */\n readonly ariaLabelledby = input<string[] | string | undefined>(undefined, {\n alias: \"aria-labelledby\",\n })\n\n /**\n * Function that returns a human readable value for the slider thumb\n */\n readonly getAriaValueText = input<(details: ValueTextDetails) => string>()\n\n /**\n * The maximum value of the slider\n * @default 100\n */\n readonly max = input<number | undefined>()\n\n /**\n * The minimum value of the slider\n * @default 0\n */\n readonly min = input<number | undefined>()\n\n /**\n * The minimum permitted steps between multiple thumbs.\n *\n * `minStepsBetweenThumbs` * `step` should reflect the gap between the thumbs.\n *\n * - `step: 1` and `minStepsBetweenThumbs: 10` => gap is `10`\n * - `step: 10` and `minStepsBetweenThumbs: 2` => gap is `20`\n *\n * @default 0\n */\n readonly minStepsBetweenThumbs = input<number | undefined>()\n\n /**\n * The orientation of the slider\n * @default \"horizontal\"\n */\n readonly orientation = input<\"vertical\" | \"horizontal\" | undefined>()\n\n /**\n * The origin of the slider range. The track is filled from the origin\n * to the thumb for single values.\n * - \"start\": Useful when the value represents an absolute value\n * - \"center\": Useful when the value represents an offset (relative)\n * - \"end\": Useful when the value represents an offset from the end\n *\n * @default \"start\"\n */\n readonly origin = input<\"start\" | \"center\" | \"end\" | undefined>()\n\n /**\n * The step value of the slider\n * @default 1\n */\n readonly step = input<number | undefined>()\n\n /**\n * The alignment of the slider thumb relative to the track\n * - `center`: the thumb will extend beyond the bounds of the slider track.\n * - `contain`: the thumb will be contained within the bounds of the track.\n *\n * @default \"contain\"\n */\n readonly thumbAlignment = input<\"contain\" | \"center\" | undefined>()\n\n /**\n * The slider thumbs dimensions\n */\n readonly thumbSize = input<{height: number; width: number} | undefined>()\n\n /**\n * Value change callback.\n */\n readonly valueChanged = output<ValueChangeDetails>()\n\n /**\n * Function invoked when the slider value change is done\n */\n readonly valueChangedEnd = output<ValueChangeDetails>()\n\n /**\n * Function invoked when the slider focus changes\n */\n readonly focusChanged = output<FocusChangeDetails>()\n\n protected readonly document = inject(DOCUMENT)\n\n protected readonly sliderContextService = inject(SliderContextService)\n\n protected readonly isMounted = useIsMounted()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContextService.context().getRootBindings({id: this.hostId()}),\n )\n\n override ngOnInit() {\n super.ngOnInit()\n\n const machine = useMachine(\n sliderMachine,\n computed<Explicit<SliderApiProps>>(() => ({\n \"aria-label\": this.ariaLabel(),\n \"aria-labelledby\": this.ariaLabelledby(),\n defaultValue: this.defaultValue(),\n dir: this.dir(),\n disabled: this.isDisabled(),\n // angular handles this automatically with ngModel and Reactive Forms\n form: undefined,\n getAriaValueText: this.getAriaValueText(),\n getRootNode: this.getRootNode() ?? (() => this.document),\n ids: undefined,\n invalid: this.isInvalid(),\n max: this.max(),\n min: this.min(),\n minStepsBetweenThumbs: this.minStepsBetweenThumbs(),\n name: this.name(),\n onFocusChange: (details) => {\n if (this.isMounted()) {\n this.focusChanged.emit(details)\n }\n if (details.focusedIndex === -1) {\n // only trigger onTouched on blur.\n this.onTouched()\n }\n },\n onValueChange: (details) => {\n if (!this.control) {\n if (this.isMounted()) {\n this.valueChanged.emit(details)\n }\n this.value.set(details.value)\n return\n }\n // ngModel is bound to the root, but change events happen from internal\n // elements and are passed to the machine. So we need to fire the\n // form's value change event to keep it in sync.\n this.onChange(details.value)\n // angular handles touched/dirty internally when ngModel is bound to an\n // <input> element, but we don't have that luxury here. We fire these\n // manually.\n if (!this.control?.touched) {\n this.control.markAsTouched?.()\n }\n if (!this.control?.dirty) {\n this.control.markAsDirty?.()\n }\n },\n onValueChangeEnd: (details) => {\n if (this.isMounted()) {\n this.valueChangedEnd.emit(details)\n }\n },\n orientation: this.orientation(),\n origin: this.origin(),\n readOnly: this.readOnly(),\n required: this.isRequired(),\n step: this.step(),\n thumbAlignment: this.thumbAlignment(),\n thumbSize: this.thumbSize(),\n value: this.value(),\n })),\n this.injector,\n )\n\n this.sliderContextService.init(\n computed(() => createSliderApi(machine, normalizeProps)),\n )\n\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service.js\"\nimport {useSliderThumbContext} from \"./slider-thumb-context.service.js\"\n\n@Directive()\nexport class CoreSliderThumbIndicatorDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n protected readonly sliderThumbContext = useSliderThumbContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly value = computed(() =>\n this.sliderContext().getThumbValue(this.sliderThumbContext().index),\n )\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getThumbIndicatorBindings({\n id: this.hostId(),\n index: this.sliderThumbContext().index,\n onDestroy: this.onDestroy,\n }),\n )\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, inject, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\nimport type {SignalifyInput} from \"@qualcomm-ui/angular-core/signals\"\nimport type {ThumbProps} from \"@qualcomm-ui/core/slider\"\n\nimport {useSliderContext} from \"./slider-context.service\"\nimport {SliderThumbContextService} from \"./slider-thumb-context.service\"\n\n@Directive()\nexport class CoreSliderThumbDirective\n implements SignalifyInput<ThumbProps>, OnInit\n{\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n /**\n * The slider thumb's index.\n */\n readonly index = input.required<number>()\n /**\n * The name associated with the slider thumb's input (when used in a form).\n */\n readonly name = input<string>()\n\n protected readonly sliderThumbContextService = inject(\n SliderThumbContextService,\n )\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getThumbBindings({\n id: this.hostId(),\n index: this.index(),\n name: this.name(),\n onDestroy: this.onDestroy,\n }),\n )\n\n ngOnInit() {\n this.sliderThumbContextService.init(\n computed(() => ({\n index: this.index(),\n name: this.name(),\n })),\n )\n\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service\"\n\n@Directive()\nexport class CoreSliderTrackDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getTrackBindings({\n id: this.hostId(),\n onDestroy: this.onDestroy,\n }),\n )\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, input, type OnInit} from \"@angular/core\"\n\nimport {useId, useOnDestroy} from \"@qualcomm-ui/angular-core/common\"\nimport {useTrackBindings} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {useSliderContext} from \"./slider-context.service\"\n\n@Directive()\nexport class CoreSliderValueTextDirective implements OnInit {\n /**\n * {@link https://www.w3schools.com/html/html_id.asp id attribute}. If\n * omitted, a unique identifier will be generated for accessibility.\n */\n readonly id = input<string>()\n\n protected readonly hostId = computed(() => useId(this, this.id()))\n\n protected readonly sliderContext = useSliderContext()\n\n protected readonly onDestroy = useOnDestroy()\n\n protected readonly trackBindings = useTrackBindings(() =>\n this.sliderContext().getValueTextBindings({\n id: this.hostId(),\n onDestroy: this.onDestroy,\n }),\n )\n\n ngOnInit() {\n this.trackBindings()\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
package/input/index.d.ts CHANGED
@@ -74,16 +74,10 @@ declare abstract class AbstractInputFormControlDirective implements ControlValue
74
74
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AbstractInputFormControlDirective, never, never, { "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
75
75
  }
76
76
 
77
- declare abstract class AbstractListCollectionFormControlDirective<T extends CollectionItem> implements ControlValueAccessor, OnInit {
77
+ declare abstract class AbstractBaseListCollectionFormControlDirective<T extends CollectionItem> implements ControlValueAccessor, OnInit {
78
78
  /**
79
- * The item collection
80
- *
81
- * @inheritDoc
82
- */
83
- readonly collection: _angular_core.InputSignal<ListCollection<T>>;
84
- /**
85
- * The initial state of the input when rendered. Use when you don't need to
86
- * control the checked state of the input. This property will be ignored if you
79
+ * The initial value of the input when rendered. Use when you don't need to
80
+ * control the value of the input. This property will be ignored if you
87
81
  * opt into controlled state via form control bindings.
88
82
  *
89
83
  * @inheritDoc
@@ -146,8 +140,18 @@ declare abstract class AbstractListCollectionFormControlDirective<T extends Coll
146
140
  * and Template forms.
147
141
  */
148
142
  setDisabledState(isDisabled: boolean): void;
143
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AbstractBaseListCollectionFormControlDirective<any>, never>;
144
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AbstractBaseListCollectionFormControlDirective<any>, never, never, { "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
145
+ }
146
+ declare abstract class AbstractListCollectionFormControlDirective<T extends CollectionItem> extends AbstractBaseListCollectionFormControlDirective<T> {
147
+ /**
148
+ * The item collection
149
+ *
150
+ * @inheritDoc
151
+ */
152
+ readonly collection: _angular_core.InputSignal<ListCollection<T>>;
149
153
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AbstractListCollectionFormControlDirective<any>, never>;
150
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AbstractListCollectionFormControlDirective<any>, never, never, { "collection": { "alias": "collection"; "required": true; "isSignal": true; }; "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
154
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AbstractListCollectionFormControlDirective<any>, never, never, { "collection": { "alias": "collection"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
151
155
  }
152
156
 
153
157
  interface InputFormControlContext<T> {
@@ -185,6 +189,6 @@ declare const FORM_CONTROL_ERROR_MESSAGE_PROVIDER: InjectionToken<Partial<FormCo
185
189
  declare const INPUT_FORM_CONTROL_CONTEXT: InjectionToken<InputFormControlContext<any>>;
186
190
  declare function initInputFormControl<T = string>(): InputFormControlContext<T>;
187
191
 
188
- export { AbstractInputFormControlDirective, AbstractListCollectionFormControlDirective, FORM_CONTROL_ERROR_MESSAGE_PROVIDER, INPUT_FORM_CONTROL_CONTEXT, initInputFormControl };
192
+ export { AbstractBaseListCollectionFormControlDirective, AbstractInputFormControlDirective, AbstractListCollectionFormControlDirective, FORM_CONTROL_ERROR_MESSAGE_PROVIDER, INPUT_FORM_CONTROL_CONTEXT, initInputFormControl };
189
193
  export type { FormControlKnownErrors, InputFormControlContext };
190
194
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sources":["../../src/input/abstract-input-form-control.directive.ts","../../src/input/abstract-list-collection-form-control.directive.ts","../../src/input/input-form-control-provider.ts"],"sourcesContent":[null,null,null],"names":[],"mappings":";;;;;;;;AAqCA;AAIE;;;;AAIG;;AAGH;;;;AAIG;;AAKH;;;AAGG;;AAKH;;AAEG;;AAGH;;;AAGG;;AAKH;;;AAGG;;AAMH;AACA;AACA;AACA;AAGA;;AAIA;;;AAGG;AACH;;;;;;AAoJA;AAIA;;AAEG;AACH;AA2BA;AAKA;;;AAUA;AAIA;;;;AAIG;AACH;;;AAGD;;AC7QD;AAME;;;;AAIG;;AAGH;;;;;;AAMG;;AAGH;;;;AAIG;;AAKH;;;AAGG;;AAKH;;AAEG;;AAGH;;;AAGG;;AAKH;;;AAGG;;AAMH;AACA;AACA;AACA;AAGA;;AAIA;;;AAGG;AACH;;;;;;AAsKA;AAIA;;AAEG;AACH;AA2BA;AAKA;;;AAUA;AAIA;;;;AAIG;AACH;;;AAGD;;ACxUK;;AAEJ;;AAEG;;AAEH;;;;;AAKA;AACD;;AAkBD;;;;;;;;;;;;;;;;AAgBG;AACH;AAIA;AAIA;;;"}
1
+ {"version":3,"file":"index.d.ts","sources":["../../src/input/abstract-input-form-control.directive.ts","../../src/input/abstract-list-collection-form-control.directive.ts","../../src/input/input-form-control-provider.ts"],"sourcesContent":[null,null,null],"names":[],"mappings":";;;;;;;;AAqCA;AAIE;;;;AAIG;;AAGH;;;;AAIG;;AAKH;;;AAGG;;AAKH;;AAEG;;AAGH;;;AAGG;;AAKH;;;AAGG;;AAMH;AACA;AACA;AACA;AAGA;;AAIA;;;AAGG;AACH;;;;;;AAoJA;AAIA;;AAEG;AACH;AA2BA;AAKA;;;AAUA;AAIA;;;;AAIG;AACH;;;AAGD;;AC7QD;AAME;;;;;;AAMG;;AAGH;;;;AAIG;;AAKH;;;AAGG;;AAKH;;AAEG;;AAGH;;;AAGG;;AAKH;;;AAGG;;AAMH;AACA;AACA;AACA;AAGA;;AAIA;;;AAGG;AACH;;;;;;AAsKA;AAIA;;AAEG;AACH;AA2BA;AAKA;;;AAUA;AAIA;;;;AAIG;AACH;;;AAGD;AAED;AAIE;;;;AAIG;;;;AAEJ;;AC7UK;;AAEJ;;AAEG;;AAEH;;;;;AAKA;AACD;;AAkBD;;;;;;;;;;;;;;;;AAgBG;AACH;AAIA;AAIA;;;"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@qualcomm-ui/angular-core",
3
3
  "description": "Design-agnostic Angular building blocks and utilities.",
4
- "version": "1.0.4",
4
+ "version": "1.0.6",
5
5
  "author": "Ryan Bower",
6
6
  "license": "BSD-3-Clause-Clear",
7
7
  "sideEffects": false,
@@ -148,6 +148,10 @@
148
148
  "types": "./signals/index.d.ts",
149
149
  "default": "./fesm2022/qualcomm-ui-angular-core-signals.mjs"
150
150
  },
151
+ "./slider": {
152
+ "types": "./slider/index.d.ts",
153
+ "default": "./fesm2022/qualcomm-ui-angular-core-slider.mjs"
154
+ },
151
155
  "./state": {
152
156
  "types": "./state/index.d.ts",
153
157
  "default": "./fesm2022/qualcomm-ui-angular-core-state.mjs"
@@ -192,13 +196,14 @@
192
196
  "@angular/forms": ">=20 <22",
193
197
  "@angular/platform-browser": ">=20 <22",
194
198
  "@angular/platform-browser-dynamic": ">=20 <22",
195
- "@qualcomm-ui/core": "^1.0.6",
199
+ "@qualcomm-ui/core": "^1.0.8",
196
200
  "@qualcomm-ui/dom": "^1.0.5",
197
201
  "@qualcomm-ui/utils": "^1.0.3",
198
202
  "@tanstack/virtual-core": ">=3.13.12",
199
203
  "lucide-angular": ">=0.487.0 <1",
200
204
  "typescript": ">=5.2.0 <6"
201
205
  },
206
+ "repository": "https://github.com/qualcomm/qualcomm-ui",
202
207
  "private": false,
203
208
  "publishConfig": {
204
209
  "access": "public"
@@ -1,15 +1,18 @@
1
+ import * as _qualcomm_ui_angular_core_machine from '@qualcomm-ui/angular-core/machine';
2
+ import { BaseApiContextService } from '@qualcomm-ui/angular-core/machine';
1
3
  import * as _qualcomm_ui_core_pagination from '@qualcomm-ui/core/pagination';
2
4
  import { PageItem, PaginationApiProps, PaginationApi } from '@qualcomm-ui/core/pagination';
3
5
  import * as _angular_core from '@angular/core';
4
6
  import { OnInit } from '@angular/core';
5
- import * as _qualcomm_ui_angular_core_machine from '@qualcomm-ui/angular-core/machine';
6
- import { BaseApiContextService } from '@qualcomm-ui/angular-core/machine';
7
7
  import { SignalifyInput } from '@qualcomm-ui/angular-core/signals';
8
8
  import { NumberInput } from '@qualcomm-ui/utils/coercion';
9
9
 
10
10
  declare class CorePaginationNextTriggerDirective implements OnInit {
11
11
  readonly paginationContext: () => _qualcomm_ui_core_pagination.PaginationApi;
12
- private readonly trackBindings;
12
+ protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
13
+ extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
14
+ setDisabled: (disabled: boolean) => void;
15
+ };
13
16
  ngOnInit(): void;
14
17
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CorePaginationNextTriggerDirective, never>;
15
18
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CorePaginationNextTriggerDirective, never, never, {}, {}, never, never, true, never>;
@@ -22,7 +25,10 @@ declare class CorePaginationPageItemDirective implements OnInit {
22
25
  */
23
26
  readonly item: _angular_core.InputSignal<PageItem>;
24
27
  readonly itemProps: _angular_core.Signal<_qualcomm_ui_core_pagination.PaginationPageItemBindings>;
25
- private trackBindings;
28
+ protected trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
29
+ extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
30
+ setDisabled: (disabled: boolean) => void;
31
+ };
26
32
  ngOnInit(): void;
27
33
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CorePaginationPageItemDirective, never>;
28
34
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CorePaginationPageItemDirective, never, never, { "item": { "alias": "item"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -39,7 +45,10 @@ declare class CorePaginationPageItemsDirective implements OnInit {
39
45
 
40
46
  declare class CorePaginationPageMetadataDirective implements OnInit {
41
47
  readonly paginationContext: () => _qualcomm_ui_core_pagination.PaginationApi;
42
- private readonly trackBindings;
48
+ protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
49
+ extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
50
+ setDisabled: (disabled: boolean) => void;
51
+ };
43
52
  ngOnInit(): void;
44
53
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CorePaginationPageMetadataDirective, never>;
45
54
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CorePaginationPageMetadataDirective, never, never, {}, {}, never, never, true, never>;
@@ -48,9 +57,12 @@ declare class CorePaginationPageMetadataDirective implements OnInit {
48
57
  declare class CorePaginationPageSizeLabelDirective implements OnInit {
49
58
  readonly paginationContext: () => _qualcomm_ui_core_pagination.PaginationApi;
50
59
  readonly id: _angular_core.InputSignal<string | undefined>;
51
- private readonly hostId;
52
- private readonly onDestroy;
53
- private readonly trackBindings;
60
+ protected readonly hostId: _angular_core.Signal<string>;
61
+ protected readonly onDestroy: (callback: () => void) => void;
62
+ protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
63
+ extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
64
+ setDisabled: (disabled: boolean) => void;
65
+ };
54
66
  ngOnInit(): void;
55
67
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CorePaginationPageSizeLabelDirective, never>;
56
68
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CorePaginationPageSizeLabelDirective, never, never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -67,7 +79,10 @@ declare class CorePaginationPageSizeDirective implements OnInit {
67
79
  readonly inputAriaLabelledBy: _angular_core.Signal<string | undefined>;
68
80
  protected inputOptionChanged(value: string): void;
69
81
  readonly currentValue: _angular_core.Signal<string>;
70
- private readonly trackBindings;
82
+ protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
83
+ extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
84
+ setDisabled: (disabled: boolean) => void;
85
+ };
71
86
  ngOnInit(): void;
72
87
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CorePaginationPageSizeDirective, never>;
73
88
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CorePaginationPageSizeDirective, never, never, { "options": { "alias": "options"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -75,7 +90,10 @@ declare class CorePaginationPageSizeDirective implements OnInit {
75
90
 
76
91
  declare class CorePaginationPrevTriggerDirective implements OnInit {
77
92
  readonly paginationContext: () => _qualcomm_ui_core_pagination.PaginationApi;
78
- private readonly trackBindings;
93
+ protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
94
+ extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
95
+ setDisabled: (disabled: boolean) => void;
96
+ };
79
97
  ngOnInit(): void;
80
98
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CorePaginationPrevTriggerDirective, never>;
81
99
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CorePaginationPrevTriggerDirective, never, never, {}, {}, never, never, true, never>;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sources":["../../src/pagination/core-pagination-next-trigger.directive.ts","../../src/pagination/core-pagination-page-item.directive.ts","../../src/pagination/core-pagination-page-items.directive.ts","../../src/pagination/core-pagination-page-metadata.directive.ts","../../src/pagination/core-pagination-page-size-label.directive.ts","../../src/pagination/core-pagination-page-size.directive.ts","../../src/pagination/core-pagination-prev-trigger.directive.ts","../../src/pagination/core-pagination-root.directive.ts","../../src/pagination/pagination-context.service.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null],"names":[],"mappings":";;;;;;;;;AASA,cAAA,kCAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;AAE1B;;;;AAOD;;ACVD,cAAA,+BAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;AAE1B;;AAEG;mBACU,aAAA,CAAA,WAAA,CAAA,QAAA;wBAEK,aAAA,QAAA,4BAAA,CAAA,0BAAA;;;;;AASnB;;AClBD,cAAA,gCAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;;AAM1B;;;;AAOD;;AChBD,cAAA,mCAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;AAE1B;;;;AAOD;;ACVD,cAAA,oCAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;iBAEf,aAAA,CAAA,WAAA;AAEX;AAEA;AAEA;;;;AAUD;;ACrBD,cAAA,+BAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;AAE1B;;AAEG;sBACa,aAAA,CAAA,WAAA;0BAEI,aAAA,CAAA,MAAA;6BAIG,aAAA,CAAA,MAAA;kCAKK,aAAA,CAAA,MAAA;AAI5B;2BAIqB,aAAA,CAAA,MAAA;AAIrB;;;;AAOD;;ACrCD,cAAA,kCAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;AAE1B;;;;AAOD;;ACWD,cAAA,2BAAA,YAAA,cAAA,CAAA,kBAAA,GAAA,MAAA;AAIE;;;;AAIG;4BACmB,aAAA,CAAA,wBAAA,qBAAA,WAAA;AAItB;;;;AAIG;oBACW,aAAA,CAAA,wBAAA,SAAA,WAAA;AAId;;;;AAIG;0BACiB,aAAA,CAAA,wBAAA,qBAAA,WAAA;AAIpB;;;;AAIG;8BACqB,aAAA,CAAA,wBAAA,qBAAA,WAAA;AAIxB;;;;AAIG;gCACuB,aAAA,CAAA,WAAA;AAE1B;;;;AAIG;AACH,4BAAsB,aAAA,CAAA,WAAA;AAItB;;;;AAIG;gCACuB,aAAA,CAAA,WAAA;AAE1B;;AAEG;mBACU,aAAA,CAAA,wBAAA,qBAAA,WAAA;AAIb;;;;AAIG;uBACc,aAAA,CAAA,wBAAA,qBAAA,WAAA;AAIjB;;;;AAIG;2BACkB,aAAA,CAAA,wBAAA,qBAAA,WAAA;AAIrB;;AAEG;0BACiB,aAAA,CAAA,gBAAA;AAEpB;;AAEG;8BACqB,aAAA,CAAA,gBAAA;+CAEQ,iCAAA,CAAA,mBAAA;;;AAE/B;AAED;AAEA;;;;AAgCD;;AC3JD,cAAA,wBAAA,SAAA,qBAAA,CAAA,aAAA;;;AACqF;AAErF,cAAA,kBAAA,EACoB,aAAA,CAAA,cAAA,OAAA,aAAA;AAAA,cAClB,gEAAoB,iCAAA,CAAA,cAAA,0DAAA,aAAA,iBAAA,aAAA;AAAA,cACpB;;;;"}
1
+ {"version":3,"file":"index.d.ts","sources":["../../src/pagination/core-pagination-next-trigger.directive.ts","../../src/pagination/core-pagination-page-item.directive.ts","../../src/pagination/core-pagination-page-items.directive.ts","../../src/pagination/core-pagination-page-metadata.directive.ts","../../src/pagination/core-pagination-page-size-label.directive.ts","../../src/pagination/core-pagination-page-size.directive.ts","../../src/pagination/core-pagination-prev-trigger.directive.ts","../../src/pagination/core-pagination-root.directive.ts","../../src/pagination/pagination-context.service.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null],"names":[],"mappings":";;;;;;;;;AASA,cAAA,kCAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;+CAEM,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACVD,cAAA,+BAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;AAE1B;;AAEG;mBACU,aAAA,CAAA,WAAA,CAAA,QAAA;wBAEK,aAAA,QAAA,4BAAA,CAAA,0BAAA;AAIlB,sCAAuB,iCAAA,CAAA,mBAAA;;;AAA2C;;;;AAKnE;;AClBD,cAAA,gCAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;;AAM1B;;;;AAOD;;AChBD,cAAA,mCAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;+CAEM,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACVD,cAAA,oCAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;iBAEf,aAAA,CAAA,WAAA;AAEX,+BAAyB,aAAA,CAAA,MAAA;AAEzB;+CAEgC,iCAAA,CAAA,mBAAA;;;AAK/B;;;;AAKF;;ACrBD,cAAA,+BAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;AAE1B;;AAEG;sBACa,aAAA,CAAA,WAAA;0BAEI,aAAA,CAAA,MAAA;6BAIG,aAAA,CAAA,MAAA;kCAKK,aAAA,CAAA,MAAA;AAI5B;2BAIqB,aAAA,CAAA,MAAA;+CAIW,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACrCD,cAAA,kCAAA,YAAA,MAAA;sCAE4B,4BAAA,CAAA,aAAA;+CAEM,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACWD,cAAA,2BAAA,YAAA,cAAA,CAAA,kBAAA,GAAA,MAAA;AAIE;;;;AAIG;4BACmB,aAAA,CAAA,wBAAA,qBAAA,WAAA;AAItB;;;;AAIG;oBACW,aAAA,CAAA,wBAAA,SAAA,WAAA;AAId;;;;AAIG;0BACiB,aAAA,CAAA,wBAAA,qBAAA,WAAA;AAIpB;;;;AAIG;8BACqB,aAAA,CAAA,wBAAA,qBAAA,WAAA;AAIxB;;;;AAIG;gCACuB,aAAA,CAAA,WAAA;AAE1B;;;;AAIG;AACH,4BAAsB,aAAA,CAAA,WAAA;AAItB;;;;AAIG;gCACuB,aAAA,CAAA,WAAA;AAE1B;;AAEG;mBACU,aAAA,CAAA,wBAAA,qBAAA,WAAA;AAIb;;;;AAIG;uBACc,aAAA,CAAA,wBAAA,qBAAA,WAAA;AAIjB;;;;AAIG;2BACkB,aAAA,CAAA,wBAAA,qBAAA,WAAA;AAIrB;;AAEG;0BACiB,aAAA,CAAA,gBAAA;AAEpB;;AAEG;8BACqB,aAAA,CAAA,gBAAA;+CAEQ,iCAAA,CAAA,mBAAA;;;AAE/B;AAED;AAEA;;;;AAgCD;;AC3JD,cAAA,wBAAA,SAAA,qBAAA,CAAA,aAAA;;;AACqF;AAErF,cAAA,kBAAA,EACoB,aAAA,CAAA,cAAA,OAAA,aAAA;AAAA,cAClB,gEAAoB,iCAAA,CAAA,cAAA,0DAAA,aAAA,iBAAA,aAAA;AAAA,cACpB;;;;"}