@tactics/lokaal-loket 0.0.489 → 0.0.491
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +772 -744
- package/build/index.d.cts +3 -2
- package/build/index.d.ts +3 -2
- package/build/index.js +772 -744
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -8,7 +8,7 @@ import Supercluster from 'supercluster';
|
|
8
8
|
import * as styled_components from 'styled-components';
|
9
9
|
import { AsyncResult } from '@tactics/js-monad';
|
10
10
|
import { ThemeMode } from '@tactics/tacky';
|
11
|
-
export { ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
|
11
|
+
export { ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode, useThemeSetting } from '@tactics/tacky';
|
12
12
|
|
13
13
|
interface IHorizontalTabs {
|
14
14
|
children: React.ReactNode;
|
@@ -335,6 +335,7 @@ declare enum LogoSize {
|
|
335
335
|
}
|
336
336
|
|
337
337
|
interface ILogoBase {
|
338
|
+
src?: string;
|
338
339
|
alt: string;
|
339
340
|
size: LogoSize;
|
340
341
|
children?: React__default.ReactNode | React__default.ReactNode[];
|
@@ -601,7 +602,7 @@ declare const List: {
|
|
601
602
|
Item: ({ children }: IListItem) => react_jsx_runtime.JSX.Element;
|
602
603
|
};
|
603
604
|
|
604
|
-
declare const Logo: ({ alt, size }: ILogo) => react_jsx_runtime.JSX.Element;
|
605
|
+
declare const Logo: ({ alt, size, src }: ILogo) => react_jsx_runtime.JSX.Element;
|
605
606
|
|
606
607
|
interface INotification {
|
607
608
|
number?: number;
|
package/build/index.d.ts
CHANGED
@@ -8,7 +8,7 @@ import Supercluster from 'supercluster';
|
|
8
8
|
import * as styled_components from 'styled-components';
|
9
9
|
import { AsyncResult } from '@tactics/js-monad';
|
10
10
|
import { ThemeMode } from '@tactics/tacky';
|
11
|
-
export { ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode } from '@tactics/tacky';
|
11
|
+
export { ExternalStylesheetLoader, ExternalStylesheetLoaderI, StyleProviderAnimation, StyleProviderPreFlight, ThemeBuilder, ThemeCtx, ThemeMode, useThemeSetting } from '@tactics/tacky';
|
12
12
|
|
13
13
|
interface IHorizontalTabs {
|
14
14
|
children: React.ReactNode;
|
@@ -335,6 +335,7 @@ declare enum LogoSize {
|
|
335
335
|
}
|
336
336
|
|
337
337
|
interface ILogoBase {
|
338
|
+
src?: string;
|
338
339
|
alt: string;
|
339
340
|
size: LogoSize;
|
340
341
|
children?: React__default.ReactNode | React__default.ReactNode[];
|
@@ -601,7 +602,7 @@ declare const List: {
|
|
601
602
|
Item: ({ children }: IListItem) => react_jsx_runtime.JSX.Element;
|
602
603
|
};
|
603
604
|
|
604
|
-
declare const Logo: ({ alt, size }: ILogo) => react_jsx_runtime.JSX.Element;
|
605
|
+
declare const Logo: ({ alt, size, src }: ILogo) => react_jsx_runtime.JSX.Element;
|
605
606
|
|
606
607
|
interface INotification {
|
607
608
|
number?: number;
|