@kakadu/components 1.1.0 → 1.1.1

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.
Files changed (64) hide show
  1. package/build/icon.d.ts +25 -0
  2. package/package.json +2 -2
  3. package/build/build/aria-text.d.ts +0 -8
  4. package/build/build/atom.d.ts +0 -9
  5. package/build/build/bankid-logo.d.ts +0 -5
  6. package/build/build/box.d.ts +0 -6
  7. package/build/build/button-tooltip.d.ts +0 -5
  8. package/build/build/button.d.ts +0 -23
  9. package/build/build/card.d.ts +0 -11
  10. package/build/build/click-ripples.d.ts +0 -6
  11. package/build/build/datum.d.ts +0 -6
  12. package/build/build/dnb-logo.d.ts +0 -5
  13. package/build/build/dot.d.ts +0 -4
  14. package/build/build/flex.d.ts +0 -12
  15. package/build/build/footer.d.ts +0 -4
  16. package/build/build/gauge.d.ts +0 -6
  17. package/build/build/gjensidige-logo.d.ts +0 -5
  18. package/build/build/hooks/use-media-query.d.ts +0 -2
  19. package/build/build/hover-gradient.d.ts +0 -8
  20. package/build/build/icon-button.d.ts +0 -10
  21. package/build/build/icon.d.ts +0 -8
  22. package/build/build/icons/arrow-down.d.ts +0 -5
  23. package/build/build/icons/caret-down.d.ts +0 -5
  24. package/build/build/icons/caret-right.d.ts +0 -5
  25. package/build/build/icons/check.d.ts +0 -5
  26. package/build/build/icons/chevron-down.d.ts +0 -5
  27. package/build/build/icons/chevron-up.d.ts +0 -5
  28. package/build/build/icons/chrome-browser-logo.d.ts +0 -5
  29. package/build/build/icons/copy.d.ts +0 -5
  30. package/build/build/icons/edge-browser-logo.d.ts +0 -5
  31. package/build/build/icons/edit.d.ts +0 -5
  32. package/build/build/icons/exclamation-triangle.d.ts +0 -5
  33. package/build/build/icons/kakadu-guide-glyph.d.ts +0 -5
  34. package/build/build/icons/kakadu-guide.d.ts +0 -5
  35. package/build/build/icons/menu.d.ts +0 -5
  36. package/build/build/icons/plus.d.ts +0 -5
  37. package/build/build/icons/test.d.ts +0 -5
  38. package/build/build/icons/times.d.ts +0 -5
  39. package/build/build/jsx-runtime-BB_1_6y_.d.ts +0 -2
  40. package/build/build/kakadu-guide-icon.d.ts +0 -4
  41. package/build/build/kakadu-guide-logo.d.ts +0 -11
  42. package/build/build/kakadu-index-logo.d.ts +0 -5
  43. package/build/build/kakadu-logo.d.ts +0 -5
  44. package/build/build/modal.d.ts +0 -22
  45. package/build/build/moving-gradients.d.ts +0 -8
  46. package/build/build/moving-stars.d.ts +0 -11
  47. package/build/build/notice.d.ts +0 -10
  48. package/build/build/notification.d.ts +0 -15
  49. package/build/build/revealer.d.ts +0 -24
  50. package/build/build/separator.d.ts +0 -10
  51. package/build/build/skeleton.d.ts +0 -16
  52. package/build/build/sparebank1-logo.d.ts +0 -5
  53. package/build/build/spinner.d.ts +0 -11
  54. package/build/build/sto-logo.d.ts +0 -5
  55. package/build/build/storebrand-logo.d.ts +0 -5
  56. package/build/build/text-button.d.ts +0 -12
  57. package/build/build/text.d.ts +0 -30
  58. package/build/build/theme-setter.d.ts +0 -9
  59. package/build/build/theme.d.ts +0 -22
  60. package/build/build/utilities/copy-to-clipboard.d.ts +0 -2
  61. package/build/build/utilities/generate-random-id.d.ts +0 -2
  62. package/build/build/utilities/scale.d.ts +0 -11
  63. package/build/build/veil.d.ts +0 -4
  64. package/build/build/wrapper.d.ts +0 -15
@@ -0,0 +1,25 @@
1
+ import { type ComponentPropsWithoutRef } from 'react';
2
+ export declare enum IconType {
3
+ kakaduGuide = "kakaduGuide",
4
+ kakaduGuideGlyph = "kakaduGuideGlyph",
5
+ menu = "menu",
6
+ check = "check",
7
+ plus = "plus",
8
+ times = "times",
9
+ chevronDown = "chevronDown",
10
+ chevronUp = "chevronUp",
11
+ caretDown = "caretDown",
12
+ caretRight = "caretRight",
13
+ arrowDown = "arrowDown",
14
+ edit = "edit",
15
+ copy = "copy",
16
+ test = "test",
17
+ exclamationTriangle = "exclamationTriangle",
18
+ chromeBrowserLogo = "chromeBrowserLogo",
19
+ edgeBrowserLogo = "edgeBrowserLogo"
20
+ }
21
+ export type IconProperties = ComponentPropsWithoutRef<'svg'> & {
22
+ readonly type: IconType;
23
+ };
24
+ export declare const iconShadowStyles: string;
25
+ export default function Icon({ type, ...properties }: IconProperties): import("react/jsx-runtime").JSX.Element | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kakadu/components",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Kakadu components library",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -16,7 +16,7 @@
16
16
  ],
17
17
  "scripts": {
18
18
  "dev": "next dev",
19
- "build": "rm -rf build && vite build && tsc --project tsconfig.build.json --emitDeclarationOnly --outDir build && node move-types.mjs",
19
+ "build": "rm -rf build build-types && vite build && tsc --project tsconfig.build.json && node move-types.mjs",
20
20
  "build:next": "next build",
21
21
  "start": "next start",
22
22
  "storybook": "storybook dev -p 6006 --no-open",
@@ -1,8 +0,0 @@
1
- export { e as ariaTextStyles };
2
- export default n;
3
- declare const e: "kakadu-components-3440084244";
4
- declare function n({ as: t, className: s, ...r }: {
5
- [x: string]: any;
6
- as: any;
7
- className: any;
8
- }): any;
@@ -1,9 +0,0 @@
1
- export default o;
2
- export { e as defaultAtomElementType };
3
- declare function o({ as: t, reference: r, ...u }: {
4
- [x: string]: any;
5
- as: any;
6
- reference: any;
7
- }): l.DetailedReactHTMLElement<l.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
8
- declare const e: "div";
9
- import l = require("react");
@@ -1,5 +0,0 @@
1
- export default m;
2
- declare function m({ fill: h, ...s }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,6 +0,0 @@
1
- export default n;
2
- declare function n({ as: t, className: u, ...o }: {
3
- [x: string]: any;
4
- as: any;
5
- className: any;
6
- }): any;
@@ -1,5 +0,0 @@
1
- export default r;
2
- declare function r({ label: e, className: t }: {
3
- label: any;
4
- className: any;
5
- }): any;
@@ -1,23 +0,0 @@
1
- export default O;
2
- declare var k: any;
3
- declare const S: "kakadu-components-1978976872";
4
- declare const j: "kakadu-components-2244098950";
5
- declare const _: "kakadu-components-3923184173";
6
- declare const y: "kakadu-components-317965671";
7
- declare function O({ type: s, variant: t, className: a, children: n, label: R, tooltip: c, iconLeft: r, iconRight: i, isLoading: u, hasMovingGradients: b, movingGradientsCount: m, hasMovingStars: f, movingStarsCount: d, ...E }: {
8
- [x: string]: any;
9
- type: any;
10
- variant?: string | undefined;
11
- className: any;
12
- children: any;
13
- label: any;
14
- tooltip: any;
15
- iconLeft: any;
16
- iconRight: any;
17
- isLoading: any;
18
- hasMovingGradients?: boolean | undefined;
19
- movingGradientsCount?: number | undefined;
20
- hasMovingStars?: boolean | undefined;
21
- movingStarsCount?: number | undefined;
22
- }): any;
23
- export { k as ButtonVariant, S as buttonDangerStyles, j as buttonSecondaryStyles, _ as buttonSuccessStyles, y as buttonWarningStyles };
@@ -1,11 +0,0 @@
1
- export default R;
2
- declare function R({ icon: a, title: u, description: c, action: l, href: s, target: x, rel: d, ...m }: {
3
- [x: string]: any;
4
- icon: any;
5
- title: any;
6
- description: any;
7
- action: any;
8
- href: any;
9
- target: any;
10
- rel: any;
11
- }): any;
@@ -1,6 +0,0 @@
1
- export default y;
2
- declare function y({ size: s, className: i, ...r }: {
3
- [x: string]: any;
4
- size?: number | undefined;
5
- className: any;
6
- }): any;
@@ -1,6 +0,0 @@
1
- export default p;
2
- declare function p({ title: c, value: l, hasCopyButton: x }: {
3
- title: any;
4
- value: any;
5
- hasCopyButton: any;
6
- }): any;
@@ -1,5 +0,0 @@
1
- export default n;
2
- declare function n({ fill: l, ...e }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,4 +0,0 @@
1
- export default s;
2
- declare function s({ className: e }: {
3
- className: any;
4
- }): any;
@@ -1,12 +0,0 @@
1
- export { a as FlexAlignment };
2
- export default m;
3
- declare var a: any;
4
- declare function m({ as: o, direction: s, alignment: n, gap: e, wrap: u, className: c, ...k }: {
5
- [x: string]: any;
6
- as: any;
7
- direction?: string | undefined;
8
- alignment: any;
9
- gap?: number | undefined;
10
- wrap?: boolean | undefined;
11
- className: any;
12
- }): any;
@@ -1,4 +0,0 @@
1
- export default l;
2
- declare function l({ isFullWidth: a }: {
3
- isFullWidth?: boolean | undefined;
4
- }): any;
@@ -1,6 +0,0 @@
1
- export default j;
2
- declare function j({ label: a, size: n, percentage: u }: {
3
- label: any;
4
- size: any;
5
- percentage?: number | undefined;
6
- }): any;
@@ -1,5 +0,0 @@
1
- export default m;
2
- declare function m({ fill: s, ...l }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,2 +0,0 @@
1
- export default a;
2
- declare function a(t: any): boolean | undefined;
@@ -1,8 +0,0 @@
1
- export default $;
2
- export { R as normalBlendStyles };
3
- declare function $({ size: x, className: k, ...E }: {
4
- [x: string]: any;
5
- size?: number | undefined;
6
- className: any;
7
- }): any;
8
- declare const R: "kakadu-components-2608453841";
@@ -1,10 +0,0 @@
1
- export { m as IconButtonVariant };
2
- export default R;
3
- declare var m: any;
4
- declare function R({ icon: e, variant: u, label: a, className: p, ...k }: {
5
- [x: string]: any;
6
- icon: any;
7
- variant?: string | undefined;
8
- label: any;
9
- className: any;
10
- }): any;
@@ -1,8 +0,0 @@
1
- export default B;
2
- declare var r: any;
3
- declare function B({ type: e, ...t }: {
4
- [x: string]: any;
5
- type: any;
6
- }): any;
7
- declare const x: "kakadu-components-1645965623";
8
- export { r as IconType, x as iconShadowStyles };
@@ -1,5 +0,0 @@
1
- export default r;
2
- declare function r({ fill: t, ...s }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default i;
2
- declare function i({ fill: t, ...r }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default i;
2
- declare function i({ fill: t, ...r }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default r;
2
- declare function r({ fill: t, ...l }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default r;
2
- declare function r({ fill: t, ...l }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default r;
2
- declare function r({ fill: t, ...l }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default o;
2
- declare function o({ fill: t, ...r }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default c;
2
- declare function c({ fill: t, ...l }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default o;
2
- declare function o({ fill: t, ...r }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default r;
2
- declare function r({ fill: t, ...i }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default i;
2
- declare function i({ fill: l, ...t }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default i;
2
- declare function i({ fill: t, ...s }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default s;
2
- declare function s({ fill: t, ...i }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default i;
2
- declare function i({ fill: e, ...r }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default s;
2
- declare function s({ fill: t, ...r }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default i;
2
- declare function i({ fill: t, ...l }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default i;
2
- declare function i({ fill: t, ...l }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,2 +0,0 @@
1
- export { ne as jsxRuntimeExports };
2
- declare var ne: {};
@@ -1,4 +0,0 @@
1
- export default i;
2
- declare function i({ size: e }: {
3
- size?: number | undefined;
4
- }): any;
@@ -1,11 +0,0 @@
1
- export default d;
2
- declare function x({ fill: c, ...t }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
6
- declare var i: any;
7
- declare function d({ variant: c, height: t }: {
8
- variant?: string | undefined;
9
- height?: number | undefined;
10
- }): any;
11
- export { x as KakaduGuideLogoSvg, i as KakaduGuideLogoVariant };
@@ -1,5 +0,0 @@
1
- export default e;
2
- declare function e({ fill: c, ...t }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default n;
2
- declare function n({ fill: e, ...t }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,22 +0,0 @@
1
- export default pt;
2
- declare function pt({ root: r, maxWidth: e, className: t, isVisible: a, isFullWidth: u, shouldCloseOnOutsideClick: l, shouldCloseOnEscapePress: n, showCloseButton: p, onClose: y, children: E }: {
3
- root: any;
4
- maxWidth: any;
5
- className: any;
6
- isVisible: any;
7
- isFullWidth?: boolean | undefined;
8
- shouldCloseOnOutsideClick?: boolean | undefined;
9
- shouldCloseOnEscapePress?: boolean | undefined;
10
- showCloseButton?: boolean | undefined;
11
- onClose: any;
12
- children: any;
13
- }): any;
14
- declare function bt(r: any, e: any): {
15
- isVisible: boolean;
16
- show: () => Promise<any>;
17
- modal: any;
18
- };
19
- declare function De(): {
20
- isVisible: boolean;
21
- };
22
- export { bt as useModal, De as useModalContext };
@@ -1,8 +0,0 @@
1
- export default O;
2
- declare function O({ className: S, colors: C, maximumGradientsCount: m, speed: b, opacity: X }: {
3
- className: any;
4
- colors?: string[] | undefined;
5
- maximumGradientsCount?: number | undefined;
6
- speed?: number | undefined;
7
- opacity?: number | undefined;
8
- }): any;
@@ -1,11 +0,0 @@
1
- export default B;
2
- declare function B({ color: y, opacity: R, className: W, minimumSize: A, maximumSize: S, maximumStarsCount: x, speed: C, hasMask: j }: {
3
- color: any;
4
- opacity: any;
5
- className: any;
6
- minimumSize?: number | undefined;
7
- maximumSize?: number | undefined;
8
- maximumStarsCount?: number | undefined;
9
- speed?: number | undefined;
10
- hasMask?: boolean | undefined;
11
- }): any;
@@ -1,10 +0,0 @@
1
- export { r as NoticeType };
2
- export default p;
3
- declare var r: any;
4
- declare function p({ type: s, icon: a, className: u, children: t, ...d }: {
5
- [x: string]: any;
6
- type?: string | undefined;
7
- icon: any;
8
- className: any;
9
- children: any;
10
- }): any;
@@ -1,15 +0,0 @@
1
- export default x;
2
- declare function C({ children: n }: {
3
- children: any;
4
- }): any;
5
- declare function x({ type: n, icon: d, index: c, className: u, children: f, onDismiss: o, ...i }: {
6
- [x: string]: any;
7
- type: any;
8
- icon: any;
9
- index: any;
10
- className: any;
11
- children: any;
12
- onDismiss: any;
13
- }): any;
14
- declare function E(): () => never;
15
- export { C as NotificationProvider, E as useCreateNotification };
@@ -1,24 +0,0 @@
1
- export default q;
2
- export { k as useRevealer };
3
- declare function q({ delay: t, animationDelay: c, duration: n, threshold: l, distance: d, isMoving: r, isCentered: m, shouldReveal: f, children: v, className: a, ...o }: {
4
- [x: string]: any;
5
- delay: any;
6
- animationDelay: any;
7
- duration: any;
8
- threshold: any;
9
- distance: any;
10
- isMoving: any;
11
- isCentered: any;
12
- shouldReveal: any;
13
- children: any;
14
- className: any;
15
- }): any;
16
- declare function k(t: any, c?: {}): {
17
- isVisible: boolean;
18
- style: {
19
- "--distance": string;
20
- "--duration": string;
21
- "--animation-delay": string;
22
- };
23
- className: string;
24
- };
@@ -1,10 +0,0 @@
1
- export { u as SeparatorLabel };
2
- export default r;
3
- declare function u({ label: n, ...t }: {
4
- [x: string]: any;
5
- label: any;
6
- }): any;
7
- declare function r({ className: n, ...t }: {
8
- [x: string]: any;
9
- className: any;
10
- }): any;
@@ -1,16 +0,0 @@
1
- export { u as SkeletonInstance };
2
- export default l;
3
- declare function u({ label: s, width: t, height: r, className: i, children: n, isAnimated: o, ...c }: {
4
- [x: string]: any;
5
- label: any;
6
- width: any;
7
- height: any;
8
- className: any;
9
- children: any;
10
- isAnimated?: boolean | undefined;
11
- }): any;
12
- declare function l({ label: s, lines: t, isAnimated: r }: {
13
- label: any;
14
- lines?: number | undefined;
15
- isAnimated?: boolean | undefined;
16
- }): any;
@@ -1,5 +0,0 @@
1
- export default h;
2
- declare function h({ fill: s, ...t }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,11 +0,0 @@
1
- export { x as RevealSpinner };
2
- export default i;
3
- declare function x({ isVisible: e, ...o }: {
4
- [x: string]: any;
5
- isVisible: any;
6
- }): any;
7
- declare function i({ size: e, strokeWidth: o, isAnimated: c }: {
8
- size?: number | undefined;
9
- strokeWidth?: number | undefined;
10
- isAnimated?: boolean | undefined;
11
- }): any;
@@ -1,5 +0,0 @@
1
- export default n;
2
- declare function n({ fill: s, ...e }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,5 +0,0 @@
1
- export default v;
2
- declare function v({ fill: h, ...t }: {
3
- [x: string]: any;
4
- fill: any;
5
- }): any;
@@ -1,12 +0,0 @@
1
- export { u as TextButtonVariant };
2
- export default f;
3
- declare var u: any;
4
- declare function f({ icon: t, variant: i, tooltip: n, className: l, children: s, label: x, ...c }: {
5
- [x: string]: any;
6
- icon: any;
7
- variant?: string | undefined;
8
- tooltip: any;
9
- className: any;
10
- children: any;
11
- label: any;
12
- }): any;
@@ -1,30 +0,0 @@
1
- export default i;
2
- declare function d({ reference: e, as: t, className: s, ...x }: {
3
- [x: string]: any;
4
- reference: any;
5
- as: any;
6
- className: any;
7
- }): any;
8
- declare function k({ as: e, className: t, ...s }: {
9
- [x: string]: any;
10
- as: any;
11
- className: any;
12
- }): any;
13
- declare function m({ as: e, className: t, ...s }: {
14
- [x: string]: any;
15
- as: any;
16
- className: any;
17
- }): any;
18
- declare function p({ as: e, className: t, ...s }: {
19
- [x: string]: any;
20
- as: any;
21
- className: any;
22
- }): any;
23
- declare function i({ as: e, className: t, ...s }: {
24
- [x: string]: any;
25
- as: any;
26
- className: any;
27
- }): any;
28
- declare const r: string;
29
- declare const u: "kakadu-components-1538322784";
30
- export { d as Heading, k as Hero, m as Paragraph, p as Span, r as spanStyles, u as textShadowStyles };
@@ -1,9 +0,0 @@
1
- export default E;
2
- declare function E(): any;
3
- declare function d(): string;
4
- declare function y(e: any): void;
5
- declare const o: string[];
6
- declare function g(e: any): boolean;
7
- declare function l(e: any): boolean;
8
- declare function u(e: any): string;
9
- export { d as getThemePreference, y as setThemePreference, o as themePreferences, g as useIsDarkMode, l as useIsLightMode, u as useTheme };
@@ -1,22 +0,0 @@
1
- export default u;
2
- declare function i(): any;
3
- declare const m: "kakadu-components-216224454";
4
- declare const l: "#0c0d12";
5
- declare const u: "kakadu-components-2735574809";
6
- declare const n: "kakadu-components-352310015";
7
- declare namespace e {
8
- let family: string;
9
- let stylesheet: string;
10
- let preconnect: ({
11
- url: string;
12
- crossorigin?: undefined;
13
- } | {
14
- url: string;
15
- crossorigin: boolean;
16
- })[];
17
- }
18
- declare const a: "#4ca486";
19
- declare const c: "#f8fafc";
20
- declare const p: string;
21
- declare const f: "kakadu-components-4178476647";
22
- export { i as FontFamilyHeadLink, m as buttonResetStyles, l as darkBackgroundColor, n as effectStyles, e as font, a as greenColor, c as lightBackgroundColor, p as nonInteractiveEffectStyles, f as overflowProtectionStyles };
@@ -1,2 +0,0 @@
1
- export default a;
2
- declare function a(t: any): Promise<void>;
@@ -1,2 +0,0 @@
1
- export default n;
2
- declare function n(): string;
@@ -1,11 +0,0 @@
1
- export default m;
2
- declare function m({ originalWidth: u, originalHeight: s, size: n, width: e, height: t }: {
3
- originalWidth: any;
4
- originalHeight: any;
5
- size: any;
6
- width: any;
7
- height: any;
8
- }): {
9
- width: any;
10
- height: any;
11
- };
@@ -1,4 +0,0 @@
1
- export default a;
2
- declare function a({ hasMovingStars: r }: {
3
- hasMovingStars?: boolean | undefined;
4
- }): any;
@@ -1,15 +0,0 @@
1
- export { s as WrapperWidth };
2
- export default k;
3
- declare var s: any;
4
- declare function k({ as: e, gap: u, direction: r, alignment: c, wrap: l, width: t, className: m, innerClassName: p, children: x, ...d }: {
5
- [x: string]: any;
6
- as: any;
7
- gap: any;
8
- direction: any;
9
- alignment: any;
10
- wrap: any;
11
- width?: string | undefined;
12
- className: any;
13
- innerClassName: any;
14
- children: any;
15
- }): any;