@club-employes/utopia 4.124.0 → 4.125.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,37 @@
1
+ import { FormGroupProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare function __VLS_template(): {
4
+ attrs: Partial<{}>;
5
+ slots: {
6
+ default?(_: {}): any;
7
+ default?(_: {}): any;
8
+ actions?(_: {}): any;
9
+ };
10
+ refs: {
11
+ groupRef: HTMLDivElement;
12
+ };
13
+ rootEl: HTMLDivElement;
14
+ };
15
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
+ declare const __VLS_component: DefineComponent<FormGroupProps, {
17
+ groupId: string;
18
+ errorId: string;
19
+ descriptionId: string;
20
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FormGroupProps> & Readonly<{}>, {
21
+ legend: string;
22
+ error: string;
23
+ icon: string;
24
+ required: boolean;
25
+ disabled: boolean;
26
+ id: string;
27
+ description: string;
28
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
29
+ groupRef: HTMLDivElement;
30
+ }, HTMLDivElement>;
31
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
32
+ export default _default;
33
+ type __VLS_WithTemplateSlots<T, S> = T & {
34
+ new (): {
35
+ $slots: S;
36
+ };
37
+ };
@@ -0,0 +1,2 @@
1
+ export { default as FormGroup } from './FormGroup';
2
+ export type { FormGroupProps } from './types';
@@ -0,0 +1,9 @@
1
+ export interface FormGroupProps {
2
+ legend?: string;
3
+ icon?: string;
4
+ description?: string;
5
+ error?: string;
6
+ required?: boolean;
7
+ disabled?: boolean;
8
+ id?: string;
9
+ }
@@ -0,0 +1,22 @@
1
+ import { FormRowProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare function __VLS_template(): {
4
+ attrs: Partial<{}>;
5
+ slots: {
6
+ default?(_: {}): any;
7
+ };
8
+ refs: {};
9
+ rootEl: HTMLDivElement;
10
+ };
11
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
+ declare const __VLS_component: DefineComponent<FormRowProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FormRowProps> & Readonly<{}>, {
13
+ gap: "small" | "normal" | "large";
14
+ columns: 1 | 2 | 3;
15
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,2 @@
1
+ export { default as FormRow } from './FormRow';
2
+ export type { FormRowProps } from './types';
@@ -0,0 +1,4 @@
1
+ export interface FormRowProps {
2
+ columns?: 1 | 2 | 3;
3
+ gap?: 'small' | 'normal' | 'large';
4
+ }
@@ -0,0 +1,62 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ interface RepeatableGroupProps {
3
+ modelValue: any[];
4
+ minItems?: number;
5
+ maxItems?: number;
6
+ addLabel?: string;
7
+ removeLabel?: string;
8
+ addIcon?: string;
9
+ removeIcon?: string;
10
+ disabled?: boolean;
11
+ showIndex?: boolean;
12
+ styled?: boolean;
13
+ groupLabel?: string;
14
+ itemLabel?: string;
15
+ groupDescription?: string;
16
+ getItemKey?: (item: any, index: number) => string | number;
17
+ }
18
+ declare function __VLS_template(): {
19
+ attrs: Partial<{}>;
20
+ slots: {
21
+ item?(_: {
22
+ item: any;
23
+ index: number;
24
+ update: (newItem: any) => void;
25
+ remove: () => Promise<void>;
26
+ }): any;
27
+ actions?(_: {}): any;
28
+ };
29
+ refs: {};
30
+ rootEl: HTMLDivElement;
31
+ };
32
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
33
+ declare const __VLS_component: DefineComponent<RepeatableGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
34
+ "update:modelValue": (value: any[]) => any;
35
+ remove: (index: number) => any;
36
+ add: (index: number) => any;
37
+ }, string, PublicProps, Readonly<RepeatableGroupProps> & Readonly<{
38
+ "onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
39
+ onRemove?: ((index: number) => any) | undefined;
40
+ onAdd?: ((index: number) => any) | undefined;
41
+ }>, {
42
+ disabled: boolean;
43
+ removeIcon: string;
44
+ minItems: number;
45
+ maxItems: number;
46
+ addLabel: string;
47
+ removeLabel: string;
48
+ addIcon: string;
49
+ showIndex: boolean;
50
+ styled: boolean;
51
+ groupLabel: string;
52
+ itemLabel: string;
53
+ groupDescription: string;
54
+ getItemKey: (item: any, index: number) => string | number;
55
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
56
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
57
+ export default _default;
58
+ type __VLS_WithTemplateSlots<T, S> = T & {
59
+ new (): {
60
+ $slots: S;
61
+ };
62
+ };
@@ -0,0 +1,2 @@
1
+ export { default as RepeatableGroup } from './RepeatableGroup';
2
+ export type { RepeatableGroupProps } from './RepeatableGroup';
@@ -33,3 +33,9 @@ export { ProductImage } from './ProductImage';
33
33
  export type { ProductImageProps } from './ProductImage';
34
34
  export { MultiSelect, type MultiSelectProps } from './MultiSelect';
35
35
  export { IconPicker, type IconPickerProps } from './IconPicker';
36
+ export { FormGroup } from './FormGroup';
37
+ export type { FormGroupProps } from './FormGroup';
38
+ export { FormRow } from './FormRow';
39
+ export type { FormRowProps } from './FormRow';
40
+ export { RepeatableGroup } from './RepeatableGroup';
41
+ export type { RepeatableGroupProps } from './RepeatableGroup';
@@ -37,6 +37,7 @@ declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, Comp
37
37
  editable: boolean;
38
38
  rows: number;
39
39
  totalPages: number;
40
+ columns: ColumnType[];
40
41
  lazy: boolean;
41
42
  isCsvDataCheckMode: boolean;
42
43
  filters: DataTableFilterMeta;
@@ -51,7 +52,6 @@ declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, Comp
51
52
  metaKeySelection: boolean;
52
53
  showPaginator: boolean;
53
54
  rowsPerPageOptions: number[];
54
- columns: ColumnType[];
55
55
  activatedColumns: string[];
56
56
  totalRecords: number;
57
57
  sortMode: "single" | "multiple";
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2026-02-02T09:23:48.666Z",
2
+ "generated": "2026-02-02T09:45:23.322Z",
3
3
  "count": 1239,
4
4
  "icons": [
5
5
  "Accessibility",
package/dist/index.d.ts CHANGED
@@ -45,6 +45,7 @@ export type { CounterButtonsProps } from './components/molecules/CounterButtons/
45
45
  export type { ProductImageProps } from './components/molecules/ProductImage/types';
46
46
  export type { MultiSelectProps } from './components/molecules/MultiSelect/types';
47
47
  export type { IconPickerProps } from './components/molecules/IconPicker/types';
48
+ export type { FormGroupProps } from './components/molecules/FormGroup/types';
48
49
  export type { BreadcrumbsItem, BreadcrumbsProps } from './components/organisms/Breadcrumbs/types';
49
50
  export type { Filter, FilterGroupProps, Sort } from './components/organisms/FilterGroup/types';
50
51
  export type { FilterPriceProps } from './components/organisms/FilterPrice/types';