@club-employes/utopia 4.111.0 → 4.112.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,12 @@
1
+ import { GrantUsersSelectionProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<GrantUsersSelectionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4
+ "update:modelValue": (value: string) => any;
5
+ }, string, PublicProps, Readonly<GrantUsersSelectionProps> & Readonly<{
6
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
7
+ }>, {
8
+ name: string;
9
+ disabled: boolean;
10
+ modelValue: string;
11
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
12
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as GrantUsersSelection } from './GrantUsersSelection';
@@ -0,0 +1,7 @@
1
+ export interface GrantUsersSelectionProps {
2
+ modelValue?: string;
3
+ name?: string;
4
+ variant?: 'default' | 'primary' | 'secondary';
5
+ size?: 'small' | 'medium' | 'large';
6
+ disabled?: boolean;
7
+ }
@@ -23,10 +23,9 @@ export { Tab, Tabs } from './Tabs';
23
23
  export type { TabProps, TabsProps } from './Tabs/types';
24
24
  export { Tooltip } from './Tooltip';
25
25
  export { FilterLocation, type FilterLocationProps } from './FilterLocation';
26
- export { PageHeader } from './PageHeader';
27
- export type { PageHeaderProps } from './PageHeader';
26
+ export { PageHeader, type PageHeaderProps } from './PageHeader';
28
27
  export { RadioCard, type RadioCardProps } from './RadioCard';
29
28
  export { PriceSummary, type PriceSummaryProps } from './PriceSummary';
30
- export { FooterAction } from './FooterAction';
31
- export type { FooterActionProps } from './FooterAction';
29
+ export { GrantUsersSelection, type GrantUsersSelectionProps } from './GrantUsersSelection';
30
+ export { FooterAction, type FooterActionProps } from './FooterAction';
32
31
  export { CounterButtons, type CounterButtonsProps } from './CounterButtons';
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2026-01-26T14:45:01.352Z",
2
+ "generated": "2026-01-26T15:02:29.043Z",
3
3
  "count": 1239,
4
4
  "icons": [
5
5
  "Accessibility",
package/dist/index.d.ts CHANGED
@@ -38,6 +38,7 @@ export { PageHeader } from './components/molecules/PageHeader';
38
38
  export type { PageHeaderProps } from './components/molecules/PageHeader/types';
39
39
  export type { RadioCardProps } from './components/molecules/RadioCard/types';
40
40
  export type { PriceSummaryProps } from './components/molecules/PriceSummary/types';
41
+ export type { GrantUsersSelectionProps } from './components/molecules/GrantUsersSelection/types';
41
42
  export type { FooterActionProps } from './components/molecules/FooterAction/types';
42
43
  export type { CounterButtonsProps } from './components/molecules/CounterButtons/types';
43
44
  export type { BreadcrumbsItem, BreadcrumbsProps } from './components/organisms/Breadcrumbs/types';