@club-employes/utopia 4.99.0 → 4.100.0

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,13 @@
1
+ import { CounterButtonsProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<CounterButtonsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4
+ "update:modelValue": (value: number) => any;
5
+ }, string, PublicProps, Readonly<CounterButtonsProps> & Readonly<{
6
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
7
+ }>, {
8
+ size: "xs" | "sm" | "md" | "lg";
9
+ disabled: boolean;
10
+ min: number;
11
+ step: number;
12
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
13
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export { default as CounterButtons } from './CounterButtons';
2
+ export type { CounterButtonsProps } from './types';
@@ -0,0 +1,8 @@
1
+ export interface CounterButtonsProps {
2
+ modelValue: number;
3
+ min?: number;
4
+ max?: number;
5
+ step?: number;
6
+ size?: 'xs' | 'sm' | 'md' | 'lg';
7
+ disabled?: boolean;
8
+ }
@@ -19,4 +19,5 @@ export interface DropDownProps {
19
19
  message?: string;
20
20
  required?: boolean;
21
21
  maxHeight?: string;
22
+ innerModalId?: string;
22
23
  }
@@ -3,4 +3,5 @@ export interface DropFilterProps {
3
3
  activeFiltersCount?: number;
4
4
  isSort?: boolean;
5
5
  isDefaultSort?: boolean;
6
+ innerModalId?: string;
6
7
  }
@@ -16,4 +16,5 @@ export interface FilterLocationProps {
16
16
  modelValue: FilterLocationValue;
17
17
  departments: DropDownOption[];
18
18
  maxDistance?: number;
19
+ innerModalId?: string;
19
20
  }
@@ -25,3 +25,4 @@ export { Tooltip } from './Tooltip';
25
25
  export { FilterLocation, type FilterLocationProps } from './FilterLocation';
26
26
  export { RadioCard, type RadioCardProps } from './RadioCard';
27
27
  export { PriceSummary, type PriceSummaryProps } from './PriceSummary';
28
+ export { CounterButtons, type CounterButtonsProps } from './CounterButtons';
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2026-01-19T13:44:53.695Z",
2
+ "generated": "2026-01-19T16:57:13.626Z",
3
3
  "count": 1239,
4
4
  "icons": [
5
5
  "Accessibility",
package/dist/index.d.ts CHANGED
@@ -32,6 +32,7 @@ export type { TooltipProps } from './components/molecules/Tooltip/types';
32
32
  export type { FilterLocationProps } from './components/molecules/FilterLocation/types';
33
33
  export type { RadioCardProps } from './components/molecules/RadioCard/types';
34
34
  export type { PriceSummaryProps } from './components/molecules/PriceSummary/types';
35
+ export type { CounterButtonsProps } from './components/molecules/CounterButtons/types';
35
36
  export type { BreadcrumbsItem, BreadcrumbsProps } from './components/organisms/Breadcrumbs/types';
36
37
  export type { Filter, FilterGroupProps, Sort } from './components/organisms/FilterGroup/types';
37
38
  export type { FilterPriceProps } from './components/organisms/FilterPrice/types';