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.
- package/CHANGELOG.md +6 -25
- package/dist/components/ui/sidebar.d.ts +65 -0
- package/dist/styles.css +1 -1
- package/package.json +3 -3
- package/src/components/ui/sidebar.tsx +771 -0
- package/src/index.css +3189 -2
- package/src/styles/tailwind.css +2 -2
- package/tsconfig.json +1 -1
- package/.storybook/main.ts +0 -18
- package/.storybook/preview.ts +0 -16
- package/.storybook/vitest.setup.ts +0 -9
package/src/styles/tailwind.css
CHANGED
|
@@ -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
package/.storybook/main.ts
DELETED
|
@@ -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;
|
package/.storybook/preview.ts
DELETED
|
@@ -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);
|