ui-arreya-components 1.1.0 → 1.2.0

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.
@@ -35,7 +35,7 @@
35
35
  --radius: 1.5rem;
36
36
  --font-primary: 'Montserrat', sans-serif;
37
37
  --font-secondary: 'Aviano Sans', sans-serif;
38
- ;
38
+
39
39
  --sidebar-background: 0 0% 98%;
40
40
  --sidebar-foreground: 240 5.3% 26.1%;
41
41
  --sidebar-primary: 240 5.9% 10%;
@@ -71,7 +71,7 @@
71
71
  --chart-5: 340 75% 55%;
72
72
  --font-primary: 'Montserrat', sans-serif;
73
73
  --font-secondary: 'Aviano Sans', sans-serif;
74
- ;
74
+
75
75
  --sidebar-background: 240 5.9% 10%;
76
76
  --sidebar-foreground: 240 4.8% 95.9%;
77
77
  --sidebar-primary: 224.3 76.3% 48%;
package/tsconfig.json CHANGED
@@ -36,5 +36,5 @@
36
36
  }
37
37
  },
38
38
  "include": ["src/**/*"],
39
- "exclude": ["node_modules", "dist"]
39
+ "exclude": ["node_modules", "dist", ".github", "scripts", ".storybook"]
40
40
  }
@@ -1,18 +0,0 @@
1
- import type { StorybookConfig } from '@storybook/react-vite';
2
-
3
- const config: StorybookConfig = {
4
- "stories": [
5
- "../src/**/*.mdx",
6
- "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"
7
- ],
8
- "addons": [
9
- "@storybook/addon-essentials",
10
- "@chromatic-com/storybook",
11
- "@storybook/experimental-addon-test"
12
- ],
13
- "framework": {
14
- "name": "@storybook/react-vite",
15
- "options": {}
16
- }
17
- };
18
- export default config;
@@ -1,16 +0,0 @@
1
- import type { Preview } from '@storybook/react'
2
-
3
- import '../src/index.css'
4
-
5
- const preview: Preview = {
6
- parameters: {
7
- controls: {
8
- matchers: {
9
- color: /(background|color)$/i,
10
- date: /Date$/i,
11
- },
12
- },
13
- },
14
- };
15
-
16
- export default preview;
@@ -1,9 +0,0 @@
1
- import { beforeAll } from 'vitest';
2
- import { setProjectAnnotations } from '@storybook/react';
3
- import * as projectAnnotations from './preview';
4
-
5
- // This is an important step to apply the right configuration when testing your stories.
6
- // More info at: https://storybook.js.org/docs/api/portable-stories/portable-stories-vitest#setprojectannotations
7
- const project = setProjectAnnotations([projectAnnotations]);
8
-
9
- beforeAll(project.beforeAll);