@placesapp/appy-ui 0.0.335 → 0.0.337
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 -2
- package/src/styles/globals.css +44 -41
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@placesapp/appy-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.337",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"module": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -47,7 +47,8 @@
|
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "tsup",
|
|
49
49
|
"dev": "tsup --watch",
|
|
50
|
-
"prepublishOnly": "npm run build"
|
|
50
|
+
"prepublishOnly": "npm run build",
|
|
51
|
+
"publish": "npm publish --access public"
|
|
51
52
|
},
|
|
52
53
|
"repository": {
|
|
53
54
|
"type": "git",
|
package/src/styles/globals.css
CHANGED
|
@@ -45,30 +45,31 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
:root {
|
|
48
|
-
--
|
|
49
|
-
--
|
|
48
|
+
--radius: 0.875rem;
|
|
49
|
+
--background: oklch(1 0 0);
|
|
50
|
+
--foreground: oklch(0.145 0 0);
|
|
50
51
|
--card: oklch(1 0 0);
|
|
51
52
|
--card-foreground: oklch(0.145 0 0);
|
|
52
53
|
--popover: oklch(1 0 0);
|
|
53
54
|
--popover-foreground: oklch(0.145 0 0);
|
|
54
|
-
--primary: oklch(0.
|
|
55
|
-
--primary-foreground: oklch(0.
|
|
55
|
+
--primary: oklch(0.205 0 0);
|
|
56
|
+
--primary-foreground: oklch(0.985 0 0);
|
|
56
57
|
--secondary: oklch(0.97 0 0);
|
|
57
58
|
--secondary-foreground: oklch(0.205 0 0);
|
|
58
59
|
--muted: oklch(0.97 0 0);
|
|
59
60
|
--muted-foreground: oklch(0.556 0 0);
|
|
60
|
-
--accent: oklch(0.
|
|
61
|
-
--accent-foreground: oklch(0.
|
|
62
|
-
--destructive: oklch(0.
|
|
61
|
+
--accent: oklch(0.97 0 0);
|
|
62
|
+
--accent-foreground: oklch(0.205 0 0);
|
|
63
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
64
|
+
--destructive-foreground: oklch(0.985 0 0);
|
|
63
65
|
--border: oklch(0.922 0 0);
|
|
64
66
|
--input: oklch(0.922 0 0);
|
|
65
|
-
--ring: oklch(0.
|
|
66
|
-
--chart-1: oklch(0.
|
|
67
|
-
--chart-2: oklch(0.
|
|
68
|
-
--chart-3: oklch(0.
|
|
69
|
-
--chart-4: oklch(0.
|
|
70
|
-
--chart-5: oklch(0.
|
|
71
|
-
--radius: 0.875rem;
|
|
67
|
+
--ring: oklch(0.708 0 0);
|
|
68
|
+
--chart-1: oklch(0.646 0.222 41.116);
|
|
69
|
+
--chart-2: oklch(0.6 0.118 184.704);
|
|
70
|
+
--chart-3: oklch(0.398 0.07 227.392);
|
|
71
|
+
--chart-4: oklch(0.828 0.189 84.429);
|
|
72
|
+
--chart-5: oklch(0.769 0.188 70.08);
|
|
72
73
|
--sidebar: oklch(0.985 0 0);
|
|
73
74
|
--sidebar-foreground: oklch(0.145 0 0);
|
|
74
75
|
--sidebar-primary: oklch(0.205 0 0);
|
|
@@ -80,37 +81,38 @@
|
|
|
80
81
|
}
|
|
81
82
|
|
|
82
83
|
.dark {
|
|
83
|
-
--background: oklch(0.
|
|
84
|
-
--foreground: oklch(0.
|
|
85
|
-
--card: oklch(0.
|
|
86
|
-
--card-foreground: oklch(0.
|
|
87
|
-
--popover: oklch(0.
|
|
88
|
-
--popover-foreground: oklch(0.
|
|
89
|
-
--primary: oklch(0.
|
|
90
|
-
--primary-foreground: oklch(0.
|
|
91
|
-
--secondary: oklch(0.
|
|
92
|
-
--secondary-foreground: oklch(0.
|
|
93
|
-
--muted: oklch(0.
|
|
94
|
-
--muted-foreground: oklch(0.
|
|
95
|
-
--accent: oklch(0.
|
|
96
|
-
--accent-foreground: oklch(0.
|
|
84
|
+
--background: oklch(0.145 0 0);
|
|
85
|
+
--foreground: oklch(0.985 0 0);
|
|
86
|
+
--card: oklch(0.205 0 0);
|
|
87
|
+
--card-foreground: oklch(0.985 0 0);
|
|
88
|
+
--popover: oklch(0.269 0 0);
|
|
89
|
+
--popover-foreground: oklch(0.985 0 0);
|
|
90
|
+
--primary: oklch(0.922 0 0);
|
|
91
|
+
--primary-foreground: oklch(0.205 0 0);
|
|
92
|
+
--secondary: oklch(0.269 0 0);
|
|
93
|
+
--secondary-foreground: oklch(0.985 0 0);
|
|
94
|
+
--muted: oklch(0.269 0 0);
|
|
95
|
+
--muted-foreground: oklch(0.708 0 0);
|
|
96
|
+
--accent: oklch(0.371 0 0);
|
|
97
|
+
--accent-foreground: oklch(0.985 0 0);
|
|
97
98
|
--destructive: oklch(0.704 0.191 22.216);
|
|
99
|
+
--destructive-foreground: oklch(0.985 0 0);
|
|
98
100
|
--border: oklch(1 0 0 / 10%);
|
|
99
101
|
--input: oklch(1 0 0 / 15%);
|
|
100
|
-
--ring: oklch(0.
|
|
101
|
-
--chart-1: oklch(0.
|
|
102
|
-
--chart-2: oklch(0.
|
|
103
|
-
--chart-3: oklch(0.
|
|
104
|
-
--chart-4: oklch(0.
|
|
105
|
-
--chart-5: oklch(0.
|
|
106
|
-
--sidebar: oklch(0.
|
|
107
|
-
--sidebar-foreground: oklch(0.
|
|
108
|
-
--sidebar-primary: oklch(0.
|
|
109
|
-
--sidebar-primary-foreground: oklch(0.
|
|
110
|
-
--sidebar-accent: oklch(0.
|
|
111
|
-
--sidebar-accent-foreground: oklch(0.
|
|
102
|
+
--ring: oklch(0.556 0 0);
|
|
103
|
+
--chart-1: oklch(0.488 0.243 264.376);
|
|
104
|
+
--chart-2: oklch(0.696 0.17 162.48);
|
|
105
|
+
--chart-3: oklch(0.769 0.188 70.08);
|
|
106
|
+
--chart-4: oklch(0.627 0.265 303.9);
|
|
107
|
+
--chart-5: oklch(0.645 0.246 16.439);
|
|
108
|
+
--sidebar: oklch(0.205 0 0);
|
|
109
|
+
--sidebar-foreground: oklch(0.985 0 0);
|
|
110
|
+
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
111
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
112
|
+
--sidebar-accent: oklch(0.269 0 0);
|
|
113
|
+
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
112
114
|
--sidebar-border: oklch(1 0 0 / 10%);
|
|
113
|
-
--sidebar-ring: oklch(0.
|
|
115
|
+
--sidebar-ring: oklch(0.439 0 0);
|
|
114
116
|
}
|
|
115
117
|
|
|
116
118
|
.ios {
|
|
@@ -235,6 +237,7 @@
|
|
|
235
237
|
}
|
|
236
238
|
html {
|
|
237
239
|
@apply scroll-smooth font-sans select-none;
|
|
240
|
+
-webkit-touch-callout: none;
|
|
238
241
|
padding: env(safe-area-inset-top) env(safe-area-inset-right)
|
|
239
242
|
env(safe-area-inset-bottom) env(safe-area-inset-left);
|
|
240
243
|
background-color: var(--background);
|