winduum 2.0.0-next.23 → 2.0.0-next.25
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 +3 -1
- package/src/base/config/font.css +4 -1
- package/src/base/config/transition.css +1 -7
- package/src/base/config.css +0 -1
- package/src/base/defaults.css +4 -0
- package/src/base/index.css +0 -2
- package/src/base/keyframes.css +0 -17
- package/src/components/button/bordered.css +0 -3
- package/src/components/progress/index.css +1 -0
- package/src/components/progress/keyframes/default.css +9 -0
- package/src/main.css +2 -0
- package/src/tailwind.css +0 -1
- package/src/test.css +3 -1
- package/src/utilities/animation.css +1 -1
- package/src/utilities/index.css +0 -1
- package/src/utilities/ripple/default.css +15 -0
- package/src/utilities/ripple/index.css +2 -15
- package/src/utilities/ripple/keyframes/default.css +6 -0
- package/tailwindcss/base/config/transition.css +8 -0
- package/{src/base/config/tw.css → tailwindcss/base/config.css} +5 -14
- package/src/base/config/spacing.css +0 -15
- package/src/utilities/common.css +0 -3
- /package/{src/base/breakpoints-tw.css → tailwindcss/base/breakpoints.css} +0 -0
- /package/{src/base/defaults-tw.css → tailwindcss/base/defaults.css} +0 -0
- /package/{src/base/theme/default-tw.css → tailwindcss/theme/default.css} +0 -0
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.25",
|
|
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": {
|
package/src/base/config/font.css
CHANGED
|
@@ -2,12 +2,15 @@
|
|
|
2
2
|
--default-font-family: ui-sans-serif, system-ui, -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
3
3
|
--font-family-primary: var(--default-font-family);
|
|
4
4
|
--font-family-secondary: var(--default-font-family);
|
|
5
|
+
--font-weight-black: 900;
|
|
6
|
+
--font-weight-extrabold: 800;
|
|
5
7
|
--font-weight-bold: 700;
|
|
6
8
|
--font-weight-semibold: 600;
|
|
7
9
|
--font-weight-medium: 500;
|
|
8
10
|
--font-weight-normal: 400;
|
|
9
11
|
--font-weight-light: 300;
|
|
10
|
-
--font-weight-
|
|
12
|
+
--font-weight-extralight: 200;
|
|
13
|
+
--font-weight-thin: 100;
|
|
11
14
|
--font-size-xs: 0.75rem;
|
|
12
15
|
--font-size-sm: 0.875rem;
|
|
13
16
|
--font-size-base: 1rem;
|
|
@@ -1,10 +1,4 @@
|
|
|
1
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
2
|
--transition-all: all var(--default-transition-duration) var(--transition-timing-function-in-out);
|
|
9
3
|
--transition-color: color var(--default-transition-duration) var(--transition-timing-function-in-out);
|
|
10
4
|
--transition-background: background var(--default-transition-duration) var(--transition-timing-function-in-out);
|
|
@@ -14,7 +8,7 @@
|
|
|
14
8
|
--transition-shadow: box-shadow var(--default-transition-duration) var(--transition-timing-function-in-out);
|
|
15
9
|
--transition-display: display var(--default-transition-duration) var(--transition-timing-function-in-out);
|
|
16
10
|
--transition-overlay: overlay var(--default-transition-duration) var(--transition-timing-function-in-out);
|
|
17
|
-
--view-transition-main-duration:
|
|
11
|
+
--view-transition-main-duration: var(--default-transition-duration);
|
|
18
12
|
|
|
19
13
|
@media (prefers-reduced-motion) {
|
|
20
14
|
--default-transition-duration: 0;
|
package/src/base/config.css
CHANGED
package/src/base/defaults.css
CHANGED
package/src/base/index.css
CHANGED
package/src/base/keyframes.css
CHANGED
|
@@ -4,23 +4,6 @@
|
|
|
4
4
|
}
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
@keyframes ripple {
|
|
8
|
-
to {
|
|
9
|
-
transform: scale(2.5);
|
|
10
|
-
opacity: 0%;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
@keyframes move-indeterminate {
|
|
15
|
-
from {
|
|
16
|
-
background-position: 200% 0;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
to {
|
|
20
|
-
background-position: -200% 0;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
7
|
@keyframes fade-in {
|
|
25
8
|
from {
|
|
26
9
|
opacity: 0%;
|
|
@@ -1,15 +1,12 @@
|
|
|
1
1
|
.x-button:is(.bordered) {
|
|
2
2
|
--x-button-disabled-background-color-opacity: 0%;
|
|
3
3
|
--x-button-disabled-background-color-mix: transparent;
|
|
4
|
-
--x-button-disabled-border-color-opacity: 30%;
|
|
5
4
|
--x-button-disabled-color: var(--color-accent);
|
|
6
5
|
--x-button-active-background-color-opacity: 20%;
|
|
7
6
|
--x-button-active-background-color-mix: transparent;
|
|
8
|
-
--x-button-active-border-color-opacity: 30%;
|
|
9
7
|
--x-button-active-color: var(--color-accent);
|
|
10
8
|
--x-button-hover-background-color-opacity: 10%;
|
|
11
9
|
--x-button-hover-background-color-mix: transparent;
|
|
12
|
-
--x-button-hover-border-color-opacity: 30%;
|
|
13
10
|
--x-button-hover-color: var(--color-accent);
|
|
14
11
|
--x-button-focus-outline-offset: 0px;
|
|
15
12
|
--x-button-border-width: 1px;
|
package/src/main.css
CHANGED
package/src/tailwind.css
CHANGED
package/src/test.css
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
@import "base/reset.css";
|
|
2
|
+
@import "../tailwindcss/base/defaults.css";
|
|
3
|
+
@import "tailwindcss/base.css";
|
|
1
4
|
@import "base/index.css";
|
|
2
5
|
@import "components/index.css" layer(components);
|
|
3
6
|
@import "utilities/index.css" layer(components);
|
|
4
|
-
@import "tailwindcss/base.css";
|
|
5
7
|
@import "tailwindcss/components.css";
|
|
6
8
|
@import "tailwindcss/utilities.css";
|
|
7
9
|
@import "tailwindcss/variants.css";
|
package/src/utilities/index.css
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
.ripple {
|
|
2
|
+
inline-size: var(--ripple-size, 2rem);
|
|
3
|
+
block-size: var(--ripple-size, 2rem);
|
|
4
|
+
background-color:
|
|
5
|
+
color-mix(
|
|
6
|
+
in var(--ripple-background-color-space, srgb),
|
|
7
|
+
var(--ripple-background-color, currentColor) var(--ripple-background-color-opacity, 40%),
|
|
8
|
+
var(--ripple-background-color-mix, transparent)
|
|
9
|
+
);
|
|
10
|
+
animation-duration: var(--ripple-animation-duration, 1s);
|
|
11
|
+
position: absolute;
|
|
12
|
+
border-radius: 50%;
|
|
13
|
+
transform: scale(0);
|
|
14
|
+
pointer-events: none;
|
|
15
|
+
}
|
|
@@ -1,15 +1,2 @@
|
|
|
1
|
-
.
|
|
2
|
-
|
|
3
|
-
block-size: var(--ripple-size, 2rem);
|
|
4
|
-
background-color:
|
|
5
|
-
color-mix(
|
|
6
|
-
in var(--ripple-background-color-space, srgb),
|
|
7
|
-
var(--ripple-background-color, currentColor) var(--ripple-background-color-opacity, 40%),
|
|
8
|
-
var(--ripple-background-color-mix, transparent)
|
|
9
|
-
);
|
|
10
|
-
animation-duration: var(--ripple-animation-duration, 1s);
|
|
11
|
-
position: absolute;
|
|
12
|
-
border-radius: 50%;
|
|
13
|
-
transform: scale(0);
|
|
14
|
-
pointer-events: none;
|
|
15
|
-
}
|
|
1
|
+
@import "keyframes/default.css";
|
|
2
|
+
@import "default.css";
|
|
@@ -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
|
+
}
|
|
@@ -1,30 +1,21 @@
|
|
|
1
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;
|
|
2
3
|
--font-family-primary: var(--default-font-family);
|
|
3
4
|
--font-family-secondary: var(--default-font-family);
|
|
5
|
+
--font-weight-black: 900;
|
|
6
|
+
--font-weight-extrabold: 800;
|
|
4
7
|
--font-weight-bold: 700;
|
|
5
8
|
--font-weight-semibold: 600;
|
|
6
9
|
--font-weight-medium: 500;
|
|
7
10
|
--font-weight-normal: 400;
|
|
8
11
|
--font-weight-light: 300;
|
|
9
|
-
--font-weight-
|
|
12
|
+
--font-weight-extralight: 200;
|
|
13
|
+
--font-weight-thin: 100;
|
|
10
14
|
--z-index-10: 10;
|
|
11
15
|
--z-index-20: 20;
|
|
12
16
|
--z-index-30: 30;
|
|
13
17
|
--z-index-40: 40;
|
|
14
18
|
--z-index-50: 50;
|
|
15
|
-
--spacing-xs: 0.25rem;
|
|
16
|
-
--spacing-sm: 0.5rem;
|
|
17
|
-
--spacing-md: 0.75rem;
|
|
18
|
-
--spacing-lg: 1rem;
|
|
19
|
-
--spacing-xl: 1.25rem;
|
|
20
|
-
--spacing-2xl: 1.5rem;
|
|
21
|
-
--spacing-3xl: 1.75rem;
|
|
22
|
-
--spacing-4xl: 2rem;
|
|
23
|
-
--spacing-5xl: 2.5rem;
|
|
24
|
-
--spacing-6xl: 3rem;
|
|
25
|
-
--spacing-7xl: 3.5rem;
|
|
26
|
-
--spacing-8xl: 4rem;
|
|
27
|
-
--spacing-9xl: 5rem;
|
|
28
19
|
--radius: var(--radius-xl);
|
|
29
20
|
--radius-full: calc(infinity * 1px);
|
|
30
21
|
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
:root, :host {
|
|
2
|
-
--spacing-xs: 0.25rem;
|
|
3
|
-
--spacing-sm: 0.5rem;
|
|
4
|
-
--spacing-md: 0.75rem;
|
|
5
|
-
--spacing-lg: 1rem;
|
|
6
|
-
--spacing-xl: 1.25rem;
|
|
7
|
-
--spacing-2xl: 1.5rem;
|
|
8
|
-
--spacing-3xl: 1.75rem;
|
|
9
|
-
--spacing-4xl: 2rem;
|
|
10
|
-
--spacing-5xl: 2.5rem;
|
|
11
|
-
--spacing-6xl: 3rem;
|
|
12
|
-
--spacing-7xl: 3.5rem;
|
|
13
|
-
--spacing-8xl: 4rem;
|
|
14
|
-
--spacing-9xl: 5rem;
|
|
15
|
-
}
|
package/src/utilities/common.css
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|