@tapizlabs/ui 0.2.13 → 0.2.15
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/dist/index.js +43 -22
- package/dist/index.js.map +1 -1
- package/dist/theme.css +29 -2
- package/fonts.css +1 -0
- package/package.json +10 -4
- package/tailwind-theme.css +1 -0
- package/theme.css +1 -0
package/dist/theme.css
CHANGED
|
@@ -483,15 +483,17 @@ html:not(.dark) {
|
|
|
483
483
|
z-index: 130;
|
|
484
484
|
border-bottom: 1px solid var(--color-border);
|
|
485
485
|
background: color-mix(in srgb, var(--color-ink-000) 72%, transparent);
|
|
486
|
+
box-shadow: 0 18px 46px -36px rgba(0, 0, 0, .7);
|
|
486
487
|
backdrop-filter: blur(20px) saturate(140%);
|
|
488
|
+
-webkit-backdrop-filter: blur(20px) saturate(140%);
|
|
487
489
|
}
|
|
488
490
|
|
|
489
491
|
body.tapiz-landing-navbar-open .tapiz-landing-navbar {
|
|
490
|
-
background: color-mix(in srgb, var(--color-ink-200)
|
|
492
|
+
background: color-mix(in srgb, var(--color-ink-200) 78%, transparent);
|
|
491
493
|
}
|
|
492
494
|
|
|
493
495
|
html:not(.dark) body.tapiz-landing-navbar-open .tapiz-landing-navbar {
|
|
494
|
-
background: rgba(255, 255, 255, .
|
|
496
|
+
background: rgba(255, 255, 255, .78);
|
|
495
497
|
}
|
|
496
498
|
|
|
497
499
|
.tapiz-landing-navbar__container {
|
|
@@ -654,6 +656,17 @@ html:not(.dark) .tapiz-landing-navbar__theme-track {
|
|
|
654
656
|
background: color-mix(in srgb, var(--color-ink-000) 55%, transparent);
|
|
655
657
|
backdrop-filter: blur(8px);
|
|
656
658
|
-webkit-backdrop-filter: blur(8px);
|
|
659
|
+
opacity: 0;
|
|
660
|
+
transition: opacity .2s ease;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.tapiz-landing-navbar__scrim[data-state="open"] {
|
|
664
|
+
opacity: 1;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.tapiz-landing-navbar__scrim[data-state="closed"] {
|
|
668
|
+
opacity: 0;
|
|
669
|
+
pointer-events: none;
|
|
657
670
|
}
|
|
658
671
|
|
|
659
672
|
.tapiz-landing-navbar__drawer {
|
|
@@ -670,6 +683,9 @@ html:not(.dark) .tapiz-landing-navbar__theme-track {
|
|
|
670
683
|
background: color-mix(in srgb, var(--color-ink-200) 96%, transparent);
|
|
671
684
|
box-shadow: 0 40px 90px -42px rgba(0, 0, 0, .75);
|
|
672
685
|
padding: 1.25rem clamp(1rem, 4vw, 2rem) calc(1.25rem + env(safe-area-inset-bottom, 0px));
|
|
686
|
+
opacity: 0;
|
|
687
|
+
transform: translateY(-10px);
|
|
688
|
+
transition: opacity .22s ease, transform .22s ease;
|
|
673
689
|
}
|
|
674
690
|
|
|
675
691
|
html:not(.dark) .tapiz-landing-navbar__drawer {
|
|
@@ -677,6 +693,17 @@ html:not(.dark) .tapiz-landing-navbar__drawer {
|
|
|
677
693
|
box-shadow: 0 40px 90px -42px rgba(13, 37, 48, .28);
|
|
678
694
|
}
|
|
679
695
|
|
|
696
|
+
.tapiz-landing-navbar__drawer[data-state="open"] {
|
|
697
|
+
opacity: 1;
|
|
698
|
+
transform: translateY(0);
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.tapiz-landing-navbar__drawer[data-state="closed"] {
|
|
702
|
+
opacity: 0;
|
|
703
|
+
transform: translateY(-10px);
|
|
704
|
+
pointer-events: none;
|
|
705
|
+
}
|
|
706
|
+
|
|
680
707
|
.tapiz-landing-navbar__drawer-nav {
|
|
681
708
|
display: grid;
|
|
682
709
|
gap: .25rem;
|
package/fonts.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "./dist/fonts.css";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tapizlabs/ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.15",
|
|
4
4
|
"description": "Centralized design system, theming foundation, and reusable React UI components for the Tapiz platform.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -22,6 +22,9 @@
|
|
|
22
22
|
],
|
|
23
23
|
"sideEffects": [
|
|
24
24
|
"*.css",
|
|
25
|
+
"./theme.css",
|
|
26
|
+
"./tailwind-theme.css",
|
|
27
|
+
"./fonts.css",
|
|
25
28
|
"./dist/fonts.js",
|
|
26
29
|
"./dist/fonts.css"
|
|
27
30
|
],
|
|
@@ -30,16 +33,19 @@
|
|
|
30
33
|
"types": "./dist/index.d.ts",
|
|
31
34
|
"import": "./dist/index.js"
|
|
32
35
|
},
|
|
33
|
-
"./theme.css": "./
|
|
34
|
-
"./tailwind-theme.css": "./
|
|
36
|
+
"./theme.css": "./theme.css",
|
|
37
|
+
"./tailwind-theme.css": "./tailwind-theme.css",
|
|
35
38
|
"./fonts": {
|
|
36
39
|
"types": "./dist/fonts.d.ts",
|
|
37
40
|
"import": "./dist/fonts.js"
|
|
38
41
|
},
|
|
39
|
-
"./fonts.css": "./
|
|
42
|
+
"./fonts.css": "./fonts.css"
|
|
40
43
|
},
|
|
41
44
|
"files": [
|
|
42
45
|
"dist",
|
|
46
|
+
"theme.css",
|
|
47
|
+
"tailwind-theme.css",
|
|
48
|
+
"fonts.css",
|
|
43
49
|
"LICENSE",
|
|
44
50
|
"README.md",
|
|
45
51
|
"CHANGELOG.md",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "./dist/tailwind-theme.css";
|
package/theme.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "./dist/theme.css";
|