sve-ui 0.1.0 → 0.1.2

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 (40) hide show
  1. package/LICENCE +21 -0
  2. package/README.md +91 -2
  3. package/dist/components/Box/Box.svelte +14 -4
  4. package/dist/components/Box/Box.svelte.d.ts +36 -0
  5. package/dist/components/Center/Center.svelte +9 -4
  6. package/dist/components/Center/Center.svelte.d.ts +7 -2
  7. package/dist/components/Circle/Circle.svelte.d.ts +20 -15
  8. package/dist/components/CodeExample/CodeExample.svelte +43 -38
  9. package/dist/components/CodeExample/CodeExample.svelte.d.ts +11 -1
  10. package/dist/components/Flex/Flex.svelte.d.ts +4 -0
  11. package/dist/components/Grid/Grid.svelte +16 -0
  12. package/dist/components/Grid/Grid.svelte.d.ts +44 -0
  13. package/dist/components/GridItem/GridItem.svelte +22 -0
  14. package/dist/components/GridItem/GridItem.svelte.d.ts +29 -0
  15. package/dist/components/Loaders/DotPulse.svelte +62 -0
  16. package/dist/components/Loaders/DotPulse.svelte.d.ts +40 -0
  17. package/dist/components/Loaders/DotSpinner.svelte +121 -0
  18. package/dist/components/Loaders/DotSpinner.svelte.d.ts +40 -0
  19. package/dist/components/Loaders/DotWave.svelte +67 -0
  20. package/dist/components/Loaders/DotWave.svelte.d.ts +40 -0
  21. package/dist/components/Spacer/Spacer.svelte +3 -2
  22. package/dist/components/Spacer/Spacer.svelte.d.ts +7 -2
  23. package/dist/components/Square/Square.svelte.d.ts +20 -15
  24. package/dist/components/Text/Text.svelte +51 -0
  25. package/dist/components/Text/Text.svelte.d.ts +45 -0
  26. package/dist/index.d.ts +16 -0
  27. package/dist/index.js +6 -0
  28. package/dist/theme/breakpoints.d.ts +8 -0
  29. package/dist/theme/breakpoints.js +8 -0
  30. package/dist/theme/index.d.ts +183 -0
  31. package/dist/theme/index.js +19 -0
  32. package/dist/theme/radius.d.ts +10 -0
  33. package/dist/theme/radius.js +10 -0
  34. package/dist/theme/sizes.d.ts +60 -0
  35. package/dist/theme/sizes.js +33 -0
  36. package/dist/theme/spacing.d.ts +35 -0
  37. package/dist/theme/spacing.js +35 -0
  38. package/dist/theme/typography.d.ts +63 -0
  39. package/dist/theme/typography.js +63 -0
  40. package/package.json +1 -1
@@ -0,0 +1,121 @@
1
+ <script>import { theme } from "../../theme";
2
+ export let size = 14;
3
+ export let color = "white";
4
+ export let speed = "0.9";
5
+ let dotAmount = 8;
6
+ </script>
7
+
8
+ <div
9
+ class="dot-spinner"
10
+ style="
11
+ --sve-size: {theme.spacing[size]};
12
+ --sve-color: {color};
13
+ --sve-speed: {speed}s;
14
+ "
15
+ >
16
+ {#each Array(dotAmount) as _, i}
17
+ <div class="dot-spinner__dot" />
18
+ {/each}
19
+ </div>
20
+
21
+ <style>
22
+ .dot-spinner {
23
+ position: relative;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: flex-start;
27
+ height: var(--sve-size);
28
+ width: var(--sve-size);
29
+ }
30
+
31
+ .dot-spinner__dot {
32
+ position: absolute;
33
+ top: 0;
34
+ left: 0;
35
+ display: flex;
36
+ align-items: center;
37
+ justify-content: flex-start;
38
+ height: 100%;
39
+ width: 100%;
40
+ }
41
+
42
+ .dot-spinner__dot::before {
43
+ content: '';
44
+ height: 20%;
45
+ width: 20%;
46
+ border-radius: 50%;
47
+ background-color: var(--sve-color);
48
+ transform: scale(0);
49
+ opacity: 0.5;
50
+ animation: pulse calc(var(--sve-speed) * 1.111) ease-in-out infinite;
51
+ }
52
+
53
+ .dot-spinner__dot:nth-child(2) {
54
+ transform: rotate(45deg);
55
+ }
56
+
57
+ .dot-spinner__dot:nth-child(2)::before {
58
+ animation-delay: calc(var(--sve-speed) * -0.875);
59
+ }
60
+
61
+ .dot-spinner__dot:nth-child(3) {
62
+ transform: rotate(90deg);
63
+ }
64
+
65
+ .dot-spinner__dot:nth-child(3)::before {
66
+ animation-delay: calc(var(--sve-speed) * -0.75);
67
+ }
68
+
69
+ .dot-spinner__dot:nth-child(4) {
70
+ transform: rotate(135deg);
71
+ }
72
+
73
+ .dot-spinner__dot:nth-child(4)::before {
74
+ animation-delay: calc(var(--sve-speed) * -0.625);
75
+ }
76
+
77
+ .dot-spinner__dot:nth-child(5) {
78
+ transform: rotate(180deg);
79
+ }
80
+
81
+ .dot-spinner__dot:nth-child(5)::before {
82
+ animation-delay: calc(var(--sve-speed) * -0.5);
83
+ }
84
+
85
+ .dot-spinner__dot:nth-child(6) {
86
+ transform: rotate(225deg);
87
+ }
88
+
89
+ .dot-spinner__dot:nth-child(6)::before {
90
+ animation-delay: calc(var(--sve-speed) * -0.375);
91
+ }
92
+
93
+ .dot-spinner__dot:nth-child(7) {
94
+ transform: rotate(270deg);
95
+ }
96
+
97
+ .dot-spinner__dot:nth-child(7)::before {
98
+ animation-delay: calc(var(--sve-speed) * -0.25);
99
+ }
100
+
101
+ .dot-spinner__dot:nth-child(8) {
102
+ transform: rotate(315deg);
103
+ }
104
+
105
+ .dot-spinner__dot:nth-child(8)::before {
106
+ animation-delay: calc(var(--sve-speed) * -0.125);
107
+ }
108
+
109
+ @keyframes pulse {
110
+ 0%,
111
+ 100% {
112
+ transform: scale(0);
113
+ opacity: 0.5;
114
+ }
115
+
116
+ 50% {
117
+ transform: scale(1);
118
+ opacity: 1;
119
+ }
120
+ }
121
+ </style>
@@ -0,0 +1,40 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ /**
5
+ * The size of the dots, expressed in rem style system.
6
+ * @default 14
7
+ * @type {1 | 1.5 | "px" | 0.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96}
8
+ * @example <DotSpinner size={20}>
9
+ */
10
+ size?: 1 | 1.5 | "px" | 0.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
11
+ /**
12
+ * The color of the dots.
13
+ * @default 'white'
14
+ * @type {string}
15
+ * @example <DotSpinner color={'black'}>
16
+ */
17
+ color?: string | undefined;
18
+ /**
19
+ * The speed of the animation, expressed in seconds.
20
+ * @default '0.9'
21
+ * @type {string}
22
+ * @example <DotSpinner speed={'1.5'}>
23
+ */
24
+ speed?: string | undefined;
25
+ };
26
+ events: {
27
+ [evt: string]: CustomEvent<any>;
28
+ };
29
+ slots: {};
30
+ };
31
+ export type DotSpinnerProps = typeof __propDef.props;
32
+ export type DotSpinnerEvents = typeof __propDef.events;
33
+ export type DotSpinnerSlots = typeof __propDef.slots;
34
+ /**
35
+ * A dot spinner loader.
36
+ * @see Docs https://sveui.org/components/loaders/dot-spinner
37
+ */
38
+ export default class DotSpinner extends SvelteComponentTyped<DotSpinnerProps, DotSpinnerEvents, DotSpinnerSlots> {
39
+ }
40
+ export { DotSpinner, DotSpinnerProps };
@@ -0,0 +1,67 @@
1
+ <script>import { theme } from "../../theme";
2
+ export let size = 14;
3
+ export let color = "white";
4
+ export let speed = "1";
5
+ </script>
6
+
7
+ <div
8
+ class="dot-wave"
9
+ style="
10
+ --sve-size: {theme.spacing[size]};
11
+ --sve-speed: {speed}s;
12
+ --sve-color: {color};
13
+ "
14
+ >
15
+ <div class="dot-wave__dot" />
16
+ <div class="dot-wave__dot" />
17
+ <div class="dot-wave__dot" />
18
+ <div class="dot-wave__dot" />
19
+ </div>
20
+
21
+ <style>
22
+ .dot-wave {
23
+ display: flex;
24
+ flex-flow: row nowrap;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ width: var(--sve-size);
28
+ height: calc(var(--sve-size) * 0.17);
29
+ padding-top: calc(var(--sve-size) * 0.34);
30
+ }
31
+
32
+ .dot-wave__dot {
33
+ flex-shrink: 0;
34
+ width: calc(var(--sve-size) * 0.17);
35
+ height: calc(var(--sve-size) * 0.17);
36
+ border-radius: 50%;
37
+ background-color: var(--sve-color);
38
+ will-change: transform;
39
+ }
40
+
41
+ .dot-wave__dot:nth-child(1) {
42
+ animation: jump var(--sve-speed) ease-in-out calc(var(--sve-speed) * -0.45) infinite;
43
+ }
44
+
45
+ .dot-wave__dot:nth-child(2) {
46
+ animation: jump var(--sve-speed) ease-in-out calc(var(--sve-speed) * -0.3) infinite;
47
+ }
48
+
49
+ .dot-wave__dot:nth-child(3) {
50
+ animation: jump var(--sve-speed) ease-in-out calc(var(--sve-speed) * -0.15) infinite;
51
+ }
52
+
53
+ .dot-wave__dot:nth-child(4) {
54
+ animation: jump var(--sve-speed) ease-in-out infinite;
55
+ }
56
+
57
+ @keyframes jump {
58
+ 0%,
59
+ 100% {
60
+ transform: translateY(0px);
61
+ }
62
+
63
+ 50% {
64
+ transform: translateY(-200%);
65
+ }
66
+ }
67
+ </style>
@@ -0,0 +1,40 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ /**
5
+ * The size of the dots, expressed in rem style system.
6
+ * @default 14
7
+ * @type {1 | 1.5 | "px" | 0.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96}
8
+ * @example <DotWave size={20}>
9
+ */
10
+ size?: 1 | 1.5 | "px" | 0.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | undefined;
11
+ /**
12
+ * The color of the dots.
13
+ * @default 'white'
14
+ * @type {string}
15
+ * @example <DotWave color={'black'}>
16
+ */
17
+ color?: string | undefined;
18
+ /**
19
+ * The speed of the animation, expressed in seconds.
20
+ * @default '1'
21
+ * @type {string}
22
+ * @example <DotWave speed={'.6'}>
23
+ */
24
+ speed?: string | undefined;
25
+ };
26
+ events: {
27
+ [evt: string]: CustomEvent<any>;
28
+ };
29
+ slots: {};
30
+ };
31
+ export type DotWaveProps = typeof __propDef.props;
32
+ export type DotWaveEvents = typeof __propDef.events;
33
+ export type DotWaveSlots = typeof __propDef.slots;
34
+ /**
35
+ * A dot wave loader.
36
+ * @see Docs https://sveui.org/components/loaders/dot-wave
37
+ */
38
+ export default class DotWave extends SvelteComponentTyped<DotWaveProps, DotWaveEvents, DotWaveSlots> {
39
+ }
40
+ export { DotWave, DotWaveProps };
@@ -1,4 +1,5 @@
1
- <script>export let size = 1;
1
+ <script>import Box from "../Box/Box.svelte";
2
+ export let size = 1;
2
3
  </script>
3
4
 
4
- <div style={`width: ${size}rem; height: ${size}rem;`} />
5
+ <Box width={`${size}rem`} height={`${size}rem`} {...$$restProps} />
@@ -1,8 +1,9 @@
1
1
  import { SvelteComponentTyped } from "svelte";
2
+ import type { BoxProps } from "../Box/Box.svelte";
2
3
  declare const __propDef: {
3
4
  props: {
4
5
  size?: number | undefined;
5
- };
6
+ } & BoxProps
6
7
  events: {
7
8
  [evt: string]: CustomEvent<any>;
8
9
  };
@@ -11,6 +12,10 @@ declare const __propDef: {
11
12
  export type SpacerProps = typeof __propDef.props;
12
13
  export type SpacerEvents = typeof __propDef.events;
13
14
  export type SpacerSlots = typeof __propDef.slots;
15
+ /**
16
+ * A spacer component that can be used to create layouts.
17
+ * @see Docs https://sveui.org/components/spacer
18
+ */
14
19
  export default class Spacer extends SvelteComponentTyped<SpacerProps, SpacerEvents, SpacerSlots> {
15
20
  }
16
- export {};
21
+ export { Spacer, SpacerProps };
@@ -1,29 +1,34 @@
1
1
  /** @typedef {typeof __propDef.props} SquareProps */
2
2
  /** @typedef {typeof __propDef.events} SquareEvents */
3
3
  /** @typedef {typeof __propDef.slots} SquareSlots */
4
+ /**
5
+ * A square flex component that can be used to create layouts.
6
+ * @see Docs https://sveui.org/components/square
7
+ */
4
8
  export default class Square extends SvelteComponentTyped<{
5
- [x: string]: any;
6
- size?: string | undefined;
9
+ [x: string]: any;
10
+ size?: string | undefined;
7
11
  }, {
8
- [evt: string]: CustomEvent<any>;
12
+ [evt: string]: CustomEvent<any>;
9
13
  }, {
10
- default: {};
14
+ default: {};
11
15
  }> {
12
16
  }
13
17
  export type SquareProps = typeof __propDef.props;
14
18
  export type SquareEvents = typeof __propDef.events;
15
19
  export type SquareSlots = typeof __propDef.slots;
16
20
  import { SvelteComponentTyped } from "svelte";
21
+ import type { FlexProps } from "../Flex/Flex.svelte";
17
22
  declare const __propDef: {
18
- props: {
19
- [x: string]: any;
20
- size?: string | undefined;
21
- };
22
- events: {
23
- [evt: string]: CustomEvent<any>;
24
- };
25
- slots: {
26
- default: {};
27
- };
23
+ props: {
24
+ [x: string]: any;
25
+ size?: string | undefined;
26
+ } & FlexProps
27
+ events: {
28
+ [evt: string]: CustomEvent<any>;
29
+ };
30
+ slots: {
31
+ default: {};
32
+ };
28
33
  };
29
- export {};
34
+ export { Square, SquareProps };
@@ -0,0 +1,51 @@
1
+ <script>import { theme } from "../../theme";
2
+ export let as = "p";
3
+ export let color = "black";
4
+ export let fontWeight = "normal";
5
+ export let fontSize = "md";
6
+ export let fontStyle = "normal";
7
+ export let textDecoration = "none";
8
+ export let letterSpacing = "normal";
9
+ export let lineHeight = "normal";
10
+ export let textAlign = "left";
11
+ </script>
12
+
13
+ <svelte:element
14
+ this={as}
15
+ style={`
16
+ font-size: ${theme.fontSizes[fontSize]};
17
+ color: ${color};
18
+ font-weight: ${theme.fontWeights[fontWeight]};
19
+ font-style: ${fontStyle};
20
+ text-decoration: ${textDecoration};
21
+ letter-spacing: ${theme.letterSpacings[letterSpacing]};
22
+ line-height: ${lineHeight};
23
+ text-align: ${textAlign};
24
+ `}
25
+ >
26
+ <slot />
27
+ </svelte:element>
28
+
29
+ <style>
30
+ /* :root {
31
+ --breakpoint-sm: 640px;
32
+ --breakpoint-md: 768px;
33
+ --breakpoint-lg: 1024px;
34
+ }
35
+
36
+ .container {
37
+ width: var(--width-container-base);
38
+
39
+ @media only screen and (min-width: var(--breakpoint-sm)) {
40
+ width: var(--width-container-sm);
41
+ }
42
+
43
+ @media only screen and (min-width: var(--breakpoint-md)) {
44
+ width: var(--width-container-md);
45
+ }
46
+
47
+ @media only screen and (min-width: var(--breakpoint-lg)) {
48
+ width: var(--width-container-lg);
49
+ }
50
+ } */
51
+ </style>
@@ -0,0 +1,45 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ /**
5
+ * @default "p"
6
+ */
7
+ as?: "div" | "p" | "br" | "a" | "abbr" | "address" | "b" | "bdi" | "bdo" | "blockquote" | "cite" | "code" | "del" | "dfn" | "em" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "i" | "ins" | "kbd" | "mark" | "meter" | "pre" | "q" | "span" | "var" | undefined;
8
+ /**
9
+ * @default "black"
10
+ */
11
+ color?: string | undefined;
12
+ fontWeight?: "normal" | "hairline" | "thin" | "light" | "medium" | "semibold" | "bold" | "extrabold" | "black" | undefined;
13
+ /**
14
+ * @default "md"
15
+ */
16
+ fontSize?: "sm" | "md" | "lg" | "xl" | "6xs" | "5xs" | "4xs" | "3xs" | "2xs" | "xs" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl" | "10xl" | undefined;
17
+ fontStyle?: string | undefined;
18
+ textDecoration?: string | undefined;
19
+ /**
20
+ * @default "normal"
21
+ */
22
+ letterSpacing?: "normal" | "tighter" | "tight" | "wide" | "wider" | "widest" | undefined;
23
+ /**
24
+ * @default "normal"
25
+ */
26
+ lineHeight?: string | undefined;
27
+ textAlign?: string | undefined;
28
+ };
29
+ events: {
30
+ [evt: string]: CustomEvent<any>;
31
+ };
32
+ slots: {
33
+ default: {};
34
+ };
35
+ };
36
+ export type TextProps = typeof __propDef.props;
37
+ export type TextEvents = typeof __propDef.events;
38
+ export type TextSlots = typeof __propDef.slots;
39
+ /**
40
+ * Text is the used to render text and paragraphs of text.
41
+ * @see Docs https://sveui.org/components/text
42
+ */
43
+ export default class Text extends SvelteComponentTyped<TextProps, TextEvents, TextSlots> {
44
+ }
45
+ export { Text, TextProps };
package/dist/index.d.ts CHANGED
@@ -7,6 +7,22 @@ export type { BoxProps } from './components/Box/Box.svelte';
7
7
  export { default as Flex } from './components/Flex/Flex.svelte';
8
8
  export type { FlexProps } from './components/Flex/Flex.svelte';
9
9
  export { default as Center } from './components/Center/Center.svelte';
10
+ export type { CenterProps } from './components/Center/Center.svelte';
10
11
  export { default as Spacer } from './components/Spacer/Spacer.svelte';
12
+ export type { SpacerProps } from './components/Spacer/Spacer.svelte';
11
13
  export { default as Square } from './components/Square/Square.svelte';
14
+ export type { SquareProps } from './components/Square/Square.svelte';
12
15
  export { default as Circle } from './components/Circle/Circle.svelte';
16
+ export type { CircleProps } from './components/Circle/Circle.svelte';
17
+ export { default as Grid } from './components/Grid/Grid.svelte';
18
+ export type { GridProps } from './components/Grid/Grid.svelte';
19
+ export { default as GridItem } from './components/GridItem/GridItem.svelte';
20
+ export type { GridItemProps } from './components/GridItem/GridItem.svelte';
21
+ export { default as Text } from './components/Text/Text.svelte';
22
+ export type { TextProps } from './components/Text/Text.svelte';
23
+ export { default as DotPulse } from './components/Loaders/DotPulse.svelte';
24
+ export type { DotPulseProps } from './components/Loaders/DotPulse.svelte';
25
+ export { default as DotSpinner } from './components/Loaders/DotSpinner.svelte';
26
+ export type { DotSpinnerProps } from './components/Loaders/DotSpinner.svelte';
27
+ export { default as DotWave } from './components/Loaders/DotWave.svelte';
28
+ export type { DotWaveProps } from './components/Loaders/DotWave.svelte';
package/dist/index.js CHANGED
@@ -7,3 +7,9 @@ export { default as Center } from './components/Center/Center.svelte';
7
7
  export { default as Spacer } from './components/Spacer/Spacer.svelte';
8
8
  export { default as Square } from './components/Square/Square.svelte';
9
9
  export { default as Circle } from './components/Circle/Circle.svelte';
10
+ export { default as Grid } from './components/Grid/Grid.svelte';
11
+ export { default as GridItem } from './components/GridItem/GridItem.svelte';
12
+ export { default as Text } from './components/Text/Text.svelte';
13
+ export { default as DotPulse } from './components/Loaders/DotPulse.svelte';
14
+ export { default as DotSpinner } from './components/Loaders/DotSpinner.svelte';
15
+ export { default as DotWave } from './components/Loaders/DotWave.svelte';
@@ -0,0 +1,8 @@
1
+ export declare const breakpoints: {
2
+ base: string;
3
+ sm: string;
4
+ md: string;
5
+ lg: string;
6
+ xl: string;
7
+ "2xl": string;
8
+ };
@@ -0,0 +1,8 @@
1
+ export const breakpoints = {
2
+ base: "0em",
3
+ sm: "30em",
4
+ md: "48em",
5
+ lg: "62em",
6
+ xl: "80em",
7
+ "2xl": "96em",
8
+ };
@@ -0,0 +1,183 @@
1
+ export declare const theme: {
2
+ fonts: {
3
+ heading: string;
4
+ body: string;
5
+ };
6
+ fontSizes: {
7
+ '6xs': string;
8
+ '5xs': string;
9
+ "4xs": string;
10
+ "3xs": string;
11
+ "2xs": string;
12
+ xs: string;
13
+ sm: string;
14
+ md: string;
15
+ lg: string;
16
+ xl: string;
17
+ '2xl': string;
18
+ '3xl': string;
19
+ '4xl': string;
20
+ '5xl': string;
21
+ '6xl': string;
22
+ '7xl': string;
23
+ '8xl': string;
24
+ '9xl': string;
25
+ '10xl': string;
26
+ };
27
+ fontWeights: {
28
+ hairline: number;
29
+ thin: number;
30
+ light: number;
31
+ normal: number;
32
+ medium: number;
33
+ semibold: number;
34
+ bold: number;
35
+ extrabold: number;
36
+ black: number;
37
+ };
38
+ letterSpacings: {
39
+ tighter: string;
40
+ tight: string;
41
+ normal: string;
42
+ wide: string;
43
+ wider: string;
44
+ widest: string;
45
+ };
46
+ lineHeights: {
47
+ normal: string;
48
+ none: number;
49
+ shorter: number;
50
+ short: number;
51
+ base: number;
52
+ tall: number;
53
+ taller: string;
54
+ "3": string;
55
+ "4": string;
56
+ "5": string;
57
+ "6": string;
58
+ "7": string;
59
+ "8": string;
60
+ "9": string;
61
+ "10": string;
62
+ };
63
+ colors: {
64
+ primary: string;
65
+ secondary: string;
66
+ tertiary: string;
67
+ dark: string;
68
+ light: string;
69
+ };
70
+ sizes: {
71
+ container: {
72
+ base: string;
73
+ sm: string;
74
+ md: string;
75
+ lg: string;
76
+ xl: string;
77
+ };
78
+ px: string;
79
+ 0.5: string;
80
+ 1: string;
81
+ 1.5: string;
82
+ 2: string;
83
+ 2.5: string;
84
+ 3: string;
85
+ 3.5: string;
86
+ 4: string;
87
+ 5: string;
88
+ 6: string;
89
+ 7: string;
90
+ 8: string;
91
+ 9: string;
92
+ 10: string;
93
+ 12: string;
94
+ 14: string;
95
+ 16: string;
96
+ 20: string;
97
+ 24: string;
98
+ 28: string;
99
+ 32: string;
100
+ 36: string;
101
+ 40: string;
102
+ 44: string;
103
+ 48: string;
104
+ 52: string;
105
+ 56: string;
106
+ 60: string;
107
+ 64: string;
108
+ 72: string;
109
+ 80: string;
110
+ 96: string;
111
+ max: string;
112
+ min: string;
113
+ full: string;
114
+ "3xs": string;
115
+ "2xs": string;
116
+ xs: string;
117
+ sm: string;
118
+ md: string;
119
+ lg: string;
120
+ xl: string;
121
+ "2xl": string;
122
+ "3xl": string;
123
+ "4xl": string;
124
+ "5xl": string;
125
+ "6xl": string;
126
+ "7xl": string;
127
+ "8xl": string;
128
+ prose: string;
129
+ };
130
+ spacing: {
131
+ px: string;
132
+ 0.5: string;
133
+ 1: string;
134
+ 1.5: string;
135
+ 2: string;
136
+ 2.5: string;
137
+ 3: string;
138
+ 3.5: string;
139
+ 4: string;
140
+ 5: string;
141
+ 6: string;
142
+ 7: string;
143
+ 8: string;
144
+ 9: string;
145
+ 10: string;
146
+ 12: string;
147
+ 14: string;
148
+ 16: string;
149
+ 20: string;
150
+ 24: string;
151
+ 28: string;
152
+ 32: string;
153
+ 36: string;
154
+ 40: string;
155
+ 44: string;
156
+ 48: string;
157
+ 52: string;
158
+ 56: string;
159
+ 60: string;
160
+ 64: string;
161
+ 72: string;
162
+ 80: string;
163
+ 96: string;
164
+ };
165
+ radius: {
166
+ none: string;
167
+ sm: string;
168
+ md: string;
169
+ lg: string;
170
+ xl: string;
171
+ '2xl': string;
172
+ '3xl': string;
173
+ full: string;
174
+ };
175
+ breakpoints: {
176
+ base: string;
177
+ sm: string;
178
+ md: string;
179
+ lg: string;
180
+ xl: string;
181
+ "2xl": string;
182
+ };
183
+ };