@club-employes/utopia 4.188.0 → 4.190.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,23 @@
1
+ import { MfePageProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare function __VLS_template(): {
4
+ attrs: Partial<{}>;
5
+ slots: {
6
+ action?(_: {}): any;
7
+ default?(_: {}): any;
8
+ };
9
+ refs: {};
10
+ rootEl: HTMLDivElement;
11
+ };
12
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
+ declare const __VLS_component: DefineComponent<MfePageProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<MfePageProps> & Readonly<{}>, {
14
+ padding: "none" | "small" | "medium" | "large";
15
+ intro: string;
16
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
17
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
18
+ export default _default;
19
+ type __VLS_WithTemplateSlots<T, S> = T & {
20
+ new (): {
21
+ $slots: S;
22
+ };
23
+ };
@@ -0,0 +1 @@
1
+ export { default as MfePage } from './MfePage';
@@ -0,0 +1,5 @@
1
+ export interface MfePageProps {
2
+ title: string;
3
+ intro?: string;
4
+ padding?: 'none' | 'small' | 'medium' | 'large';
5
+ }
@@ -5,3 +5,4 @@ export { default as MobileMenu } from './DefaultLayout/components/MobileMenu';
5
5
  export { default as MobileMenuButton } from './DefaultLayout/components/MobileMenuButton';
6
6
  export { default as NavItem } from './DefaultLayout/components/NavItem';
7
7
  export { AuthLayout } from './AuthLayout';
8
+ export { MfePage } from './MfePage';
@@ -342,6 +342,11 @@ export interface TableProps<T = Record<string, any>> {
342
342
  */
343
343
  removableSort?: boolean;
344
344
  rowHover?: boolean;
345
+ /**
346
+ * Affiche un curseur pointer sur les lignes, sans nécessiter `doSelection` ou une colonne ACTIONS.
347
+ * @default false
348
+ */
349
+ rowClickable?: boolean;
345
350
  csvSeparator?: string;
346
351
  exportFilename?: string;
347
352
  exportFunction?: (options: {
package/dist/index.d.ts CHANGED
@@ -3,7 +3,7 @@ export { ThemeProvider } from './theme-provider';
3
3
  export type { ThemeConfig, ThemeProviderProps } from './theme-provider';
4
4
  export * from './components';
5
5
  export { Skeleton, SkeletonAvatar, SkeletonText } from './components/atoms/Skeleton';
6
- export { DefaultLayout, Header, Menu, NavItem } from './components/layouts';
6
+ export { DefaultLayout, Header, Menu, NavItem, MfePage } from './components/layouts';
7
7
  export { BalanceCard, BalanceCardGroup, HtmlPreview, MyEditor, renderProseMirrorToHtml } from './components/organisms';
8
8
  export type { BalanceCardData, BalanceCardGroupProps, BalanceCardProps } from './components/organisms';
9
9
  export { Loader } from './components/templates';
@@ -54,6 +54,7 @@ export type { ToastProps, ToastOptions, ToastItem } from './components/molecules
54
54
  export { ToastService, ToastServiceKey, useToast } from './components/molecules/Toast';
55
55
  export type { ToastServiceApi, ToastServiceOptions } from './components/molecules/Toast';
56
56
  export type { AuthLayoutProps } from './components/layouts/AuthLayout/types';
57
+ export type { MfePageProps } from './components/layouts/MfePage/types';
57
58
  export type { AccordionItemProps, AccordionProps } from './components/organisms/Accordion/types';
58
59
  export type { BreadcrumbsItem, BreadcrumbsProps } from './components/organisms/Breadcrumbs/types';
59
60
  export type { DropFileProps, DropFileExistingFile } from './components/organisms/DropFile/types';
@@ -68,7 +69,6 @@ export { CellContentType, CellFilterType } from './components/organisms/Table';
68
69
  export type { CellContent, CellProps, ColumnOrder, ColumnType, MatchMode, SortConfig, TableProps, TableRequestData, TableEmptyStateProps } from './components/organisms/Table/types';
69
70
  export type { TransactionProps } from './components/organisms/Transaction/types';
70
71
  export type { MetricCardProps, MetricCardGroupProps } from './components/organisms';
71
- export type { AuthLayoutProps } from './components/layouts/AuthLayout/types';
72
72
  export type { InputSearchProps } from './components/organisms/InputSearch/types';
73
73
  export { clubEmployesDark, clubEmployesLight } from './themes/club-employes';
74
74
  export { gifteoDark, gifteoLight } from './themes/gifteo';