Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Next/24.12.0 #507

Merged
merged 3 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions api-extractor/carbonio-shell-ui.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import { DropdownItem } from '@zextras/carbonio-design-system';
import type { DynamicThemeFix } from 'darkreader';
import type { Event as Event_2 } from '@sentry/browser';
import type { EventHint } from '@sentry/browser';
import type { FC } from 'react';
import type { i18n } from 'i18next';
import type { LinkProps } from 'react-router-dom';
import type { ModalProps } from '@zextras/carbonio-design-system';
Expand Down Expand Up @@ -274,7 +273,7 @@ type AppDependantExports = {
};

// @public (undocumented)
export const AppLink: FC<AppLinkProps>;
export const AppLink: ({ to, route, ...rest }: AppLinkProps) => React_2.JSX.Element;

// @public (undocumented)
export type AppLinkProps = LinkProps & {
Expand Down Expand Up @@ -1239,7 +1238,7 @@ type SearchView = CarbonioView<SearchViewProps> & {
// @public (undocumented)
export type SearchViewProps = {
useQuery: () => [QueryChip[], Function];
ResultsHeader: FC<{
ResultsHeader: React_2.ComponentType<{
label: string;
}>;
useDisableSearch: () => [boolean, Function];
Expand Down Expand Up @@ -1664,7 +1663,7 @@ type UtilityView = CarbonioAccessoryView<UtilityBarComponentProps> & {
};

// @public (undocumented)
type ValueOf<T extends Record<string, unknown>> = T[keyof T];
type ValueOf<T> = T[keyof T];

// @public (undocumented)
type WorkerMessage<T> = {
Expand Down
6 changes: 1 addition & 5 deletions carbonio.webpack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,7 @@ const configFn = (
extensions.push('.d.ts');
conf.resolve = {
...conf.resolve,
extensions,
alias: {
...conf.resolve?.alias,
'react/jsx-runtime': 'react/jsx-runtime.js'
}
extensions
};
conf.plugins = conf.plugins ?? [];
conf.plugins.push(
Expand Down
Loading