winduum 2.0.0-next.24 → 2.0.0-next.26
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "winduum",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.26",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "types/index.d.ts",
|
|
6
6
|
"main": "plugin/index.cjs",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"tailwind.config.js",
|
|
48
48
|
"dist",
|
|
49
49
|
"src",
|
|
50
|
+
"tailwindcss",
|
|
50
51
|
"plugin",
|
|
51
52
|
"types"
|
|
52
53
|
],
|
|
@@ -58,6 +59,7 @@
|
|
|
58
59
|
"types": "./plugin/types.d.ts"
|
|
59
60
|
},
|
|
60
61
|
"./src/*": "./src/*",
|
|
62
|
+
"./tailwindcss/*": "./tailwindcss/*",
|
|
61
63
|
"./dist/*": "./dist/*",
|
|
62
64
|
"./plugin/*": "./plugin/*",
|
|
63
65
|
"./src/components/carousel": {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
@theme {
|
|
2
|
+
--breakpoint-xs: 22.5rem;
|
|
3
|
+
--breakpoint-sm: 26rem;
|
|
4
|
+
--breakpoint-md: 46.5rem;
|
|
5
|
+
--breakpoint-lg: 60rem;
|
|
6
|
+
--breakpoint-xl: 76rem;
|
|
7
|
+
--breakpoint-2xl: 82rem;
|
|
8
|
+
--breakpoint-3xl: 88rem;
|
|
9
|
+
--breakpoint-4xl: 100rem;
|
|
10
|
+
--breakpoint-xxl: 126rem;
|
|
11
|
+
--breakpoint-2xxl: 158rem;
|
|
12
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
:root, :host {
|
|
2
|
+
--default-transition-duration: 150ms;
|
|
3
|
+
--default-transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, outline-color, outline-offset, visibility, display, overlay;
|
|
4
|
+
--transition-timing-function-linear: linear;
|
|
5
|
+
--transition-timing-function-in: cubic-bezier(0.4, 0, 1, 1);
|
|
6
|
+
--transition-timing-function-out: cubic-bezier(0, 0, 0.2, 1);
|
|
7
|
+
--transition-timing-function-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
8
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
@theme {
|
|
2
|
+
--default-transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, outline-color, outline-offset, visibility, display, overlay;
|
|
3
|
+
--font-family-primary: var(--default-font-family);
|
|
4
|
+
--font-family-secondary: var(--default-font-family);
|
|
5
|
+
--font-weight-black: 900;
|
|
6
|
+
--font-weight-extrabold: 800;
|
|
7
|
+
--font-weight-bold: 700;
|
|
8
|
+
--font-weight-semibold: 600;
|
|
9
|
+
--font-weight-medium: 500;
|
|
10
|
+
--font-weight-normal: 400;
|
|
11
|
+
--font-weight-light: 300;
|
|
12
|
+
--font-weight-extralight: 200;
|
|
13
|
+
--font-weight-thin: 100;
|
|
14
|
+
--z-index-10: 10;
|
|
15
|
+
--z-index-20: 20;
|
|
16
|
+
--z-index-30: 30;
|
|
17
|
+
--z-index-40: 40;
|
|
18
|
+
--z-index-50: 50;
|
|
19
|
+
--radius: var(--radius-xl);
|
|
20
|
+
--radius-full: calc(infinity * 1px);
|
|
21
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@theme {
|
|
2
|
+
--default-color-space: sRGB;
|
|
3
|
+
--default-color-scheme: light;
|
|
4
|
+
--color-accent: var(--color-primary);
|
|
5
|
+
--color-accent-foreground: var(--color-primary-foreground);
|
|
6
|
+
--color-primary: #3b82f6; /* color.blue.500 */
|
|
7
|
+
--color-primary-foreground: var(--color-light);
|
|
8
|
+
--color-main: #171717; /* color.neutral.900 */
|
|
9
|
+
--color-main-foreground: var(--color-body);
|
|
10
|
+
--color-main-primary: var(--color-main);
|
|
11
|
+
--color-main-secondary: color-mix(in var(--default-color-space), var(--color-main) 75%, var(--color-main-foreground));
|
|
12
|
+
--color-main-tertiary: color-mix(in var(--default-color-space), var(--color-main) 50%, var(--color-main-foreground));
|
|
13
|
+
--color-body: #fff; /* color.white */
|
|
14
|
+
--color-body-foreground: var(--color-main);
|
|
15
|
+
--color-body-primary: var(--color-body);
|
|
16
|
+
--color-body-secondary: color-mix(in var(--default-color-space), var(--color-body) 95%, var(--color-body-foreground));
|
|
17
|
+
--color-body-tertiary: color-mix(in var(--default-color-space), var(--color-body) 90%, var(--color-body-foreground));
|
|
18
|
+
--color-light: #fff; /* color.white */
|
|
19
|
+
--color-light-foreground: var(--color-dark);
|
|
20
|
+
--color-dark: #171717; /* color.neutral.900 */
|
|
21
|
+
--color-dark-foreground: var(--color-light);
|
|
22
|
+
--color-success: #16a34a; /* color.green.600 */
|
|
23
|
+
--color-error: #dc2626; /* color.red.600 */
|
|
24
|
+
--color-warning: #eab308; /* color.yellow.500 */
|
|
25
|
+
--color-info: #0ea5e9; /* color.sky.500 */
|
|
26
|
+
}
|