@nswds/app 0.1.12 → 0.1.14
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.
- package/dist/index.cjs +487 -1044
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +235 -303
- package/dist/index.d.ts +235 -303
- package/dist/index.js +461 -1037
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1,345 +1,277 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime'
|
|
2
|
-
import * as react from 'react'
|
|
3
|
-
import react__default from 'react'
|
|
4
|
-
import * as class_variance_authority_types from 'class-variance-authority/types'
|
|
5
|
-
import { VariantProps } from 'class-variance-authority'
|
|
6
|
-
import { ThemeProviderProps } from 'next-themes'
|
|
7
|
-
import { ClassValue } from 'clsx'
|
|
8
|
-
import * as _sindresorhus_slugify from '@sindresorhus/slugify'
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as react from 'react';
|
|
3
|
+
import react__default from 'react';
|
|
4
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
5
|
+
import { VariantProps } from 'class-variance-authority';
|
|
6
|
+
import { ThemeProviderProps } from 'next-themes';
|
|
7
|
+
import { ClassValue } from 'clsx';
|
|
8
|
+
import * as _sindresorhus_slugify from '@sindresorhus/slugify';
|
|
9
9
|
|
|
10
|
-
declare const buttonVariants: (
|
|
11
|
-
|
|
12
|
-
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
| 'secondary'
|
|
18
|
-
| 'ghost'
|
|
19
|
-
| 'link'
|
|
20
|
-
| null
|
|
21
|
-
| undefined
|
|
22
|
-
size?: 'default' | 'sm' | 'lg' | 'icon' | null | undefined
|
|
23
|
-
} & class_variance_authority_types.ClassProp)
|
|
24
|
-
| undefined,
|
|
25
|
-
) => string
|
|
26
|
-
declare function Button({
|
|
27
|
-
className,
|
|
28
|
-
variant,
|
|
29
|
-
size,
|
|
30
|
-
asChild,
|
|
31
|
-
...props
|
|
32
|
-
}: react.ComponentProps<'button'> &
|
|
33
|
-
VariantProps<typeof buttonVariants> & {
|
|
34
|
-
asChild?: boolean
|
|
35
|
-
}): react_jsx_runtime.JSX.Element
|
|
10
|
+
declare const buttonVariants: (props?: ({
|
|
11
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
|
|
12
|
+
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
13
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
14
|
+
declare function Button({ className, variant, size, asChild, ...props }: react.ComponentProps<'button'> & VariantProps<typeof buttonVariants> & {
|
|
15
|
+
asChild?: boolean;
|
|
16
|
+
}): react_jsx_runtime.JSX.Element;
|
|
36
17
|
|
|
37
18
|
interface DynamicFaviconProps {
|
|
38
|
-
|
|
39
|
-
|
|
19
|
+
lightModeFavicon: string;
|
|
20
|
+
darkModeFavicon: string;
|
|
40
21
|
}
|
|
41
|
-
declare function DynamicFavicon({ lightModeFavicon, darkModeFavicon }: DynamicFaviconProps): null
|
|
22
|
+
declare function DynamicFavicon({ lightModeFavicon, darkModeFavicon }: DynamicFaviconProps): null;
|
|
42
23
|
|
|
43
|
-
declare function Footer(): react_jsx_runtime.JSX.Element
|
|
24
|
+
declare function Footer(): react_jsx_runtime.JSX.Element;
|
|
44
25
|
|
|
45
|
-
type IconProps = React.HTMLAttributes<SVGElement
|
|
26
|
+
type IconProps = React.HTMLAttributes<SVGElement>;
|
|
46
27
|
declare const Icons: {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
28
|
+
logo: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
github: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
30
|
+
linkedin: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
twitter: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
32
|
+
youtube: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
33
|
+
account_circle: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
34
|
+
attach_file: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
35
|
+
cancel: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
36
|
+
check_circle: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
37
|
+
check: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
38
|
+
chevron_down: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
chevron_left: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
40
|
+
chevron_right: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
chevron_up: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
42
|
+
close: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
collapse_all: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
44
|
+
computer: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
copy: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
46
|
+
dark_mode: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
47
|
+
dock_to_left: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
48
|
+
dock_to_right: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
delete: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
50
|
+
desktop: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
display_settings: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
52
|
+
double_arrow_left: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
53
|
+
double_arrow_right: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
54
|
+
download: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
55
|
+
east: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
56
|
+
error: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
57
|
+
exclamation: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
58
|
+
help: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
59
|
+
info: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
60
|
+
light_mode: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
61
|
+
link: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
62
|
+
login: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
63
|
+
logout: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
64
|
+
menu: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
65
|
+
more_horiz: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
66
|
+
more_vert: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
67
|
+
north: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
68
|
+
open_in_new: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
69
|
+
print: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
70
|
+
progress_activity: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
71
|
+
remove: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
72
|
+
search: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
73
|
+
settings_brightness: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
74
|
+
share: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
75
|
+
side_navigation: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
76
|
+
south: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
77
|
+
unfold_less: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
78
|
+
unfold_more: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
79
|
+
upload: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
80
|
+
west: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
81
|
+
};
|
|
101
82
|
|
|
102
83
|
interface ColorData {
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
84
|
+
oklch: string;
|
|
85
|
+
hex: string;
|
|
86
|
+
rgb: string;
|
|
87
|
+
hsl: string;
|
|
88
|
+
[key: string]: string;
|
|
108
89
|
}
|
|
109
|
-
type Format = 'hex' | 'oklch' | 'hsl' | 'rgb'
|
|
110
|
-
type Variant = 'shades' | 'theme'
|
|
111
|
-
type Output = 'css' | 'ts' | 'scss' | 'less' | 'tailwind' | 'json' | 'json-DTFM' | 'js'
|
|
90
|
+
type Format = 'hex' | 'oklch' | 'hsl' | 'rgb';
|
|
91
|
+
type Variant = 'shades' | 'theme';
|
|
92
|
+
type Output = 'css' | 'ts' | 'scss' | 'less' | 'tailwind' | 'json' | 'json-DTFM' | 'js';
|
|
112
93
|
interface ColorsDisplayProps {
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
94
|
+
baseColors: string[];
|
|
95
|
+
themeColor: string | undefined;
|
|
96
|
+
colorsToUse: ColorData[];
|
|
97
|
+
paletteName: string;
|
|
98
|
+
variant: Variant;
|
|
118
99
|
}
|
|
119
100
|
interface ColourOutputProps {
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
101
|
+
colorsToUse: ColorData[];
|
|
102
|
+
paletteName: string;
|
|
103
|
+
format: Format;
|
|
104
|
+
output: Output;
|
|
105
|
+
variant: Variant;
|
|
125
106
|
}
|
|
126
107
|
interface DesignTokensShades {
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
}
|
|
138
|
-
}
|
|
108
|
+
[paletteName: string]: {
|
|
109
|
+
[shade: string]: {
|
|
110
|
+
$type: 'color';
|
|
111
|
+
$value: string | {
|
|
112
|
+
colorSpace: string;
|
|
113
|
+
channels: number[];
|
|
114
|
+
alpha: number;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
};
|
|
139
118
|
}
|
|
140
119
|
interface StructuredColor {
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
120
|
+
colorSpace: string;
|
|
121
|
+
channels: number[];
|
|
122
|
+
alpha: number;
|
|
144
123
|
}
|
|
145
124
|
interface DesignTokensTheme {
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
}
|
|
155
|
-
>
|
|
156
|
-
}
|
|
125
|
+
[paletteName: string]: {
|
|
126
|
+
value: string | StructuredColor;
|
|
127
|
+
type: 'color';
|
|
128
|
+
variants: Record<string, {
|
|
129
|
+
value: string | StructuredColor;
|
|
130
|
+
type: 'color';
|
|
131
|
+
}>;
|
|
132
|
+
};
|
|
157
133
|
}
|
|
158
134
|
type NavigationSection = {
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
}
|
|
135
|
+
title: string;
|
|
136
|
+
links: {
|
|
137
|
+
title: string;
|
|
138
|
+
href: string;
|
|
139
|
+
}[];
|
|
140
|
+
};
|
|
165
141
|
|
|
166
|
-
declare const defaultNavigation: NavigationSection[]
|
|
142
|
+
declare const defaultNavigation: NavigationSection[];
|
|
167
143
|
interface LayoutProps {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
144
|
+
children: react__default.ReactNode;
|
|
145
|
+
sitename?: string;
|
|
146
|
+
navigation?: NavigationSection[];
|
|
171
147
|
}
|
|
172
|
-
declare function Layout({
|
|
173
|
-
children,
|
|
174
|
-
sitename,
|
|
175
|
-
navigation,
|
|
176
|
-
}: LayoutProps): react_jsx_runtime.JSX.Element
|
|
148
|
+
declare function Layout({ children, sitename, navigation }: LayoutProps): react_jsx_runtime.JSX.Element;
|
|
177
149
|
|
|
178
|
-
declare function Logo(props: React.ComponentPropsWithoutRef<'svg'>): react_jsx_runtime.JSX.Element
|
|
150
|
+
declare function Logo(props: React.ComponentPropsWithoutRef<'svg'>): react_jsx_runtime.JSX.Element;
|
|
179
151
|
|
|
180
|
-
declare function Masthead(): react_jsx_runtime.JSX.Element
|
|
152
|
+
declare function Masthead(): react_jsx_runtime.JSX.Element;
|
|
181
153
|
|
|
182
|
-
declare function Navigation({
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
}:
|
|
187
|
-
className?: string
|
|
188
|
-
onLinkClick?: react__default.MouseEventHandler<HTMLAnchorElement>
|
|
189
|
-
navigation: NavigationSection[]
|
|
190
|
-
}): react_jsx_runtime.JSX.Element
|
|
154
|
+
declare function Navigation({ className, onLinkClick, navigation, }: {
|
|
155
|
+
className?: string;
|
|
156
|
+
onLinkClick?: react__default.MouseEventHandler<HTMLAnchorElement>;
|
|
157
|
+
navigation: NavigationSection[];
|
|
158
|
+
}): react_jsx_runtime.JSX.Element;
|
|
191
159
|
|
|
192
160
|
interface PrevNextLinksProps {
|
|
193
|
-
|
|
161
|
+
navigation: NavigationSection[];
|
|
194
162
|
}
|
|
195
|
-
declare function PrevNextLinks({
|
|
196
|
-
navigation,
|
|
197
|
-
}: PrevNextLinksProps): react_jsx_runtime.JSX.Element | null
|
|
163
|
+
declare function PrevNextLinks({ navigation }: PrevNextLinksProps): react_jsx_runtime.JSX.Element | null;
|
|
198
164
|
|
|
199
165
|
type TableOfContentsItem = {
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
}
|
|
166
|
+
id: string;
|
|
167
|
+
children: TableOfContentsItem[];
|
|
168
|
+
title: string;
|
|
169
|
+
};
|
|
204
170
|
type TableOfContentsProps = {
|
|
205
|
-
|
|
206
|
-
}
|
|
207
|
-
declare function TableOfContents({
|
|
208
|
-
|
|
209
|
-
}:
|
|
171
|
+
tableOfContents: TableOfContentsItem[];
|
|
172
|
+
};
|
|
173
|
+
declare function TableOfContents({ tableOfContents }: TableOfContentsProps): react_jsx_runtime.JSX.Element;
|
|
174
|
+
|
|
175
|
+
declare function Providers({ children }: {
|
|
176
|
+
children: React.ReactNode;
|
|
177
|
+
}): react_jsx_runtime.JSX.Element;
|
|
210
178
|
|
|
211
|
-
declare function ThemeProvider({
|
|
212
|
-
children,
|
|
213
|
-
...props
|
|
214
|
-
}: ThemeProviderProps): react_jsx_runtime.JSX.Element
|
|
179
|
+
declare function ThemeProvider({ children, ...props }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
|
|
215
180
|
|
|
216
|
-
declare function ThemeSwitcher(): react_jsx_runtime.JSX.Element
|
|
181
|
+
declare function ThemeSwitcher(): react_jsx_runtime.JSX.Element;
|
|
217
182
|
|
|
218
|
-
declare function cn(...inputs: ClassValue[]): string
|
|
219
|
-
declare function truncate(text: string, maxLength: number): string
|
|
220
|
-
declare function kebabCase(str: string): string
|
|
221
|
-
declare function camelCase(str: string): string
|
|
183
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
184
|
+
declare function truncate(text: string, maxLength: number): string;
|
|
185
|
+
declare function kebabCase(str: string): string;
|
|
186
|
+
declare function camelCase(str: string): string;
|
|
222
187
|
|
|
223
188
|
type SimpleNode = {
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
}
|
|
189
|
+
type: string;
|
|
190
|
+
attributes: {
|
|
191
|
+
content?: string;
|
|
192
|
+
[key: string]: string | number | boolean | undefined;
|
|
193
|
+
};
|
|
194
|
+
children?: SimpleNode[];
|
|
195
|
+
};
|
|
231
196
|
type HeadingNode = {
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
}
|
|
237
|
-
declare function getNodeText(node: HTMLElement | SimpleNode): string
|
|
238
|
-
declare function domToSimple(node: Node): SimpleNode
|
|
239
|
-
declare function getHeadings(slugify?: _sindresorhus_slugify.CountableSlugify): HeadingNode[]
|
|
197
|
+
level: number;
|
|
198
|
+
id: string;
|
|
199
|
+
title: string;
|
|
200
|
+
children: HeadingNode[];
|
|
201
|
+
};
|
|
202
|
+
declare function getNodeText(node: HTMLElement | SimpleNode): string;
|
|
203
|
+
declare function domToSimple(node: Node): SimpleNode;
|
|
204
|
+
declare function getHeadings(slugify?: _sindresorhus_slugify.CountableSlugify): HeadingNode[];
|
|
240
205
|
|
|
241
206
|
declare const nswdsExports: {
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
207
|
+
Button: typeof Button;
|
|
208
|
+
DynamicFavicon: typeof DynamicFavicon;
|
|
209
|
+
Footer: typeof Footer;
|
|
210
|
+
Icons: {
|
|
211
|
+
logo: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
212
|
+
github: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
213
|
+
linkedin: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
214
|
+
twitter: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
215
|
+
youtube: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
216
|
+
account_circle: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
217
|
+
attach_file: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
218
|
+
cancel: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
219
|
+
check_circle: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
220
|
+
check: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
221
|
+
chevron_down: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
222
|
+
chevron_left: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
223
|
+
chevron_right: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
224
|
+
chevron_up: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
225
|
+
close: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
226
|
+
collapse_all: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
227
|
+
computer: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
228
|
+
copy: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
229
|
+
dark_mode: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
230
|
+
dock_to_left: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
231
|
+
dock_to_right: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
232
|
+
delete: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
233
|
+
desktop: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
234
|
+
display_settings: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
235
|
+
double_arrow_left: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
236
|
+
double_arrow_right: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
237
|
+
download: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
238
|
+
east: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
239
|
+
error: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
240
|
+
exclamation: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
241
|
+
help: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
242
|
+
info: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
243
|
+
light_mode: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
244
|
+
link: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
245
|
+
login: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
246
|
+
logout: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
247
|
+
menu: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
248
|
+
more_horiz: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
249
|
+
more_vert: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
250
|
+
north: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
251
|
+
open_in_new: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
252
|
+
print: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
253
|
+
progress_activity: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
254
|
+
remove: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
255
|
+
search: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
256
|
+
settings_brightness: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
257
|
+
share: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
258
|
+
side_navigation: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
259
|
+
south: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
260
|
+
unfold_less: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
261
|
+
unfold_more: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
262
|
+
upload: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
263
|
+
west: (props: react.HTMLAttributes<SVGElement>) => react_jsx_runtime.JSX.Element;
|
|
264
|
+
};
|
|
265
|
+
Layout: typeof Layout;
|
|
266
|
+
Logo: typeof Logo;
|
|
267
|
+
Masthead: typeof Masthead;
|
|
268
|
+
Navigation: typeof Navigation;
|
|
269
|
+
PrevNextLinks: typeof PrevNextLinks;
|
|
270
|
+
TableOfContents: typeof TableOfContents;
|
|
271
|
+
Providers: typeof Providers;
|
|
272
|
+
ThemeProvider: typeof ThemeProvider;
|
|
273
|
+
ThemeSwitcher: typeof ThemeSwitcher;
|
|
274
|
+
defaultNavigation: NavigationSection[];
|
|
275
|
+
};
|
|
310
276
|
|
|
311
|
-
export {
|
|
312
|
-
Button,
|
|
313
|
-
type ColorData,
|
|
314
|
-
type ColorsDisplayProps,
|
|
315
|
-
type ColourOutputProps,
|
|
316
|
-
type DesignTokensShades,
|
|
317
|
-
type DesignTokensTheme,
|
|
318
|
-
DynamicFavicon,
|
|
319
|
-
Footer,
|
|
320
|
-
type Format,
|
|
321
|
-
type HeadingNode,
|
|
322
|
-
Icons,
|
|
323
|
-
Layout,
|
|
324
|
-
Logo,
|
|
325
|
-
Masthead,
|
|
326
|
-
Navigation,
|
|
327
|
-
type NavigationSection,
|
|
328
|
-
type Output,
|
|
329
|
-
PrevNextLinks,
|
|
330
|
-
type SimpleNode,
|
|
331
|
-
type StructuredColor,
|
|
332
|
-
TableOfContents,
|
|
333
|
-
ThemeProvider,
|
|
334
|
-
ThemeSwitcher,
|
|
335
|
-
type Variant,
|
|
336
|
-
camelCase,
|
|
337
|
-
cn,
|
|
338
|
-
nswdsExports as default,
|
|
339
|
-
defaultNavigation,
|
|
340
|
-
domToSimple,
|
|
341
|
-
getHeadings,
|
|
342
|
-
getNodeText,
|
|
343
|
-
kebabCase,
|
|
344
|
-
truncate,
|
|
345
|
-
}
|
|
277
|
+
export { Button, type ColorData, type ColorsDisplayProps, type ColourOutputProps, type DesignTokensShades, type DesignTokensTheme, DynamicFavicon, Footer, type Format, type HeadingNode, Icons, Layout, Logo, Masthead, Navigation, type NavigationSection, type Output, PrevNextLinks, Providers, type SimpleNode, type StructuredColor, TableOfContents, ThemeProvider, ThemeSwitcher, type Variant, camelCase, cn, nswdsExports as default, defaultNavigation, domToSimple, getHeadings, getNodeText, kebabCase, truncate };
|