@nypl/design-system-react-components 1.1.2 → 1.2.0-rc

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.d.ts CHANGED
@@ -1,6 +1,8 @@
1
1
  import "./styles.scss";
2
2
  export { Box, Center, Circle, ColorModeScript, cookieStorageManager, Flex, Grid, GridItem, HStack, localStorageManager, Spacer, Square, Stack, useColorMode, useColorModeValue, VStack, } from "@chakra-ui/react";
3
3
  export { default as Accordion, AccordionTypes, } from "./components/Accordion/Accordion";
4
+ export { default as AlphabetFilter } from "./components/AlphabetFilter/AlphabetFilter";
5
+ export { default as AudioPlayer, AudioType, } from "./components/AudioPlayer/AudioPlayer";
4
6
  export { default as Breadcrumbs, BreadcrumbsTypes, } from "./components/Breadcrumbs/Breadcrumbs";
5
7
  export { default as Button, ButtonTypes } from "./components/Button/Button";
6
8
  export { default as ButtonGroup } from "./components/ButtonGroup/ButtonGroup";
@@ -0,0 +1,32 @@
1
+ declare const AlphabetFilter: {
2
+ baseStyle: {
3
+ button: {
4
+ minWidth: {
5
+ base: string;
6
+ md: string;
7
+ };
8
+ height: {
9
+ base: string;
10
+ md: string;
11
+ };
12
+ padding: string;
13
+ margin: string;
14
+ fontWeight: string;
15
+ fontSize: string;
16
+ lineHeight: string;
17
+ _last: {
18
+ padding: string;
19
+ fontWeight: string;
20
+ whiteSpace: string;
21
+ fontSize: {
22
+ base: any;
23
+ md: string;
24
+ };
25
+ };
26
+ _disabled: {
27
+ color: string;
28
+ };
29
+ };
30
+ };
31
+ };
32
+ export default AlphabetFilter;
@@ -0,0 +1,9 @@
1
+ declare const AudioPlayer: {
2
+ baseStyle: {
3
+ invalid: {
4
+ backgroundColor: string;
5
+ padding: string;
6
+ };
7
+ };
8
+ };
9
+ export default AudioPlayer;