@nycplanning/streetscape 0.7.0 → 0.8.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.
@@ -314,7 +314,7 @@ export declare const components: {
314
314
  } | undefined;
315
315
  parts: ("element" | "group" | "addon" | "field")[];
316
316
  };
317
- FormControl: {
317
+ Form: {
318
318
  baseStyle?: {
319
319
  container: {
320
320
  width: string;
@@ -387,4 +387,80 @@ export declare const components: {
387
387
  colorScheme?: string | undefined;
388
388
  } | undefined;
389
389
  };
390
+ Select: {
391
+ baseStyle?: {
392
+ icon: {
393
+ width: string;
394
+ height: string;
395
+ insetEnd: string;
396
+ position: string;
397
+ color: string;
398
+ fontSize: string;
399
+ _disabled: {
400
+ opacity: number;
401
+ };
402
+ };
403
+ field: {
404
+ appearance: string;
405
+ bg: string;
406
+ background?: string | undefined;
407
+ border?: string | undefined;
408
+ borderColor?: string | undefined;
409
+ borderRadius?: string | undefined;
410
+ color?: string | undefined;
411
+ py?: number | undefined;
412
+ px?: number | undefined;
413
+ width?: string | undefined;
414
+ _hover?: {
415
+ borderColor: string;
416
+ } | undefined;
417
+ _invalid?: {
418
+ border: string;
419
+ borderColor: string;
420
+ } | undefined;
421
+ _focusVisible?: {
422
+ border: string;
423
+ borderColor: string;
424
+ color: string;
425
+ } | undefined;
426
+ _disabled?: {
427
+ border: string;
428
+ borderColor: string;
429
+ background: string;
430
+ } | undefined;
431
+ };
432
+ } | undefined;
433
+ sizes?: {
434
+ lg: {
435
+ field: {
436
+ paddingInlineEnd: string;
437
+ fontSize?: string | undefined;
438
+ height?: number | undefined;
439
+ };
440
+ };
441
+ md: {
442
+ field: {
443
+ paddingInlineEnd: string;
444
+ fontSize?: string | undefined;
445
+ height?: number | undefined;
446
+ };
447
+ };
448
+ sm: {
449
+ field: {
450
+ paddingInlineEnd: string;
451
+ fontSize?: string | undefined;
452
+ height?: number | undefined;
453
+ };
454
+ };
455
+ } | undefined;
456
+ variants?: {
457
+ base: {};
458
+ } | undefined;
459
+ defaultProps?: {
460
+ size?: "sm" | "md" | "lg" | undefined;
461
+ variant?: "base" | undefined;
462
+ colorScheme?: string | undefined;
463
+ } | undefined;
464
+ parts: ("icon" | "field")[];
465
+ };
390
466
  };
@@ -0,0 +1,76 @@
1
+ export declare const selectTheme: {
2
+ baseStyle?: {
3
+ icon: {
4
+ width: string;
5
+ height: string;
6
+ insetEnd: string;
7
+ position: string;
8
+ color: string;
9
+ fontSize: string;
10
+ _disabled: {
11
+ opacity: number;
12
+ };
13
+ };
14
+ field: {
15
+ appearance: string;
16
+ bg: string;
17
+ background?: string | undefined;
18
+ border?: string | undefined;
19
+ borderColor?: string | undefined;
20
+ borderRadius?: string | undefined;
21
+ color?: string | undefined;
22
+ py?: number | undefined;
23
+ px?: number | undefined;
24
+ width?: string | undefined;
25
+ _hover?: {
26
+ borderColor: string;
27
+ } | undefined;
28
+ _invalid?: {
29
+ border: string;
30
+ borderColor: string;
31
+ } | undefined;
32
+ _focusVisible?: {
33
+ border: string;
34
+ borderColor: string;
35
+ color: string;
36
+ } | undefined;
37
+ _disabled?: {
38
+ border: string;
39
+ borderColor: string;
40
+ background: string;
41
+ } | undefined;
42
+ };
43
+ } | undefined;
44
+ sizes?: {
45
+ lg: {
46
+ field: {
47
+ paddingInlineEnd: string;
48
+ fontSize?: string | undefined;
49
+ height?: number | undefined;
50
+ };
51
+ };
52
+ md: {
53
+ field: {
54
+ paddingInlineEnd: string;
55
+ fontSize?: string | undefined;
56
+ height?: number | undefined;
57
+ };
58
+ };
59
+ sm: {
60
+ field: {
61
+ paddingInlineEnd: string;
62
+ fontSize?: string | undefined;
63
+ height?: number | undefined;
64
+ };
65
+ };
66
+ } | undefined;
67
+ variants?: {
68
+ base: {};
69
+ } | undefined;
70
+ defaultProps?: {
71
+ size?: "sm" | "md" | "lg" | undefined;
72
+ variant?: "base" | undefined;
73
+ colorScheme?: string | undefined;
74
+ } | undefined;
75
+ parts: ("icon" | "field")[];
76
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nycplanning/streetscape",
3
- "version": "0.7.0",
3
+ "version": "0.8.1",
4
4
  "type": "module",
5
5
  "main": "dist/index",
6
6
  "types": "dist/index.d.ts",