noph-ui 0.30.0 → 0.30.2
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/menu/Menu.svelte +4 -4
- package/dist/tooltip/Tooltip.svelte +3 -3
- package/package.json +13 -13
package/dist/menu/Menu.svelte
CHANGED
|
@@ -140,14 +140,14 @@
|
|
|
140
140
|
padding: 0;
|
|
141
141
|
box-shadow: var(--np-elevation-2);
|
|
142
142
|
margin: var(--np-menu-margin, 2px);
|
|
143
|
+
justify-self: var(--np-menu-justify-self, anchor-center);
|
|
144
|
+
position-area: var(--np-menu-position-area, bottom center);
|
|
145
|
+
position-try: normal flip-block;
|
|
143
146
|
}
|
|
144
147
|
|
|
145
|
-
.np-menu-container
|
|
148
|
+
.np-menu-container:popover-open {
|
|
146
149
|
opacity: 1;
|
|
147
150
|
animation: fadeIn 0.2s linear;
|
|
148
|
-
justify-self: var(--np-menu-justify-self, anchor-center);
|
|
149
|
-
position-area: var(--np-menu-position-area, bottom center);
|
|
150
|
-
position-try: normal flip-block;
|
|
151
151
|
}
|
|
152
152
|
@keyframes fadeIn {
|
|
153
153
|
0% {
|
|
@@ -123,13 +123,13 @@
|
|
|
123
123
|
border-radius: 0.25rem;
|
|
124
124
|
line-height: 1rem;
|
|
125
125
|
font-size: 0.75rem;
|
|
126
|
+
justify-self: var(--np-tooltip-justify-self, anchor-center);
|
|
127
|
+
position-area: var(--np-tooltip-position-area, top);
|
|
128
|
+
position-try: normal flip-block;
|
|
126
129
|
}
|
|
127
130
|
.np-tooltip:popover-open {
|
|
128
131
|
opacity: 1;
|
|
129
132
|
animation: scaleIn 0.3s ease;
|
|
130
|
-
justify-self: var(--np-tooltip-justify-self, anchor-center);
|
|
131
|
-
position-area: var(--np-tooltip-position-area, top);
|
|
132
|
-
position-try: normal flip-block;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
@keyframes scaleIn {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "noph-ui",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"homepage": "https://noph.dev",
|
|
6
6
|
"repository": {
|
|
@@ -54,27 +54,27 @@
|
|
|
54
54
|
"svelte": "^5.40.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@eslint/js": "^9.
|
|
57
|
+
"@eslint/js": "^9.39.1",
|
|
58
58
|
"@material/material-color-utilities": "^0.3.0",
|
|
59
|
-
"@playwright/test": "^1.56.
|
|
60
|
-
"@sveltejs/adapter-auto": "^
|
|
61
|
-
"@sveltejs/kit": "^2.
|
|
59
|
+
"@playwright/test": "^1.56.1",
|
|
60
|
+
"@sveltejs/adapter-auto": "^7.0.0",
|
|
61
|
+
"@sveltejs/kit": "^2.48.4",
|
|
62
62
|
"@sveltejs/package": "^2.5.4",
|
|
63
63
|
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
|
64
64
|
"@types/eslint": "^9.6.1",
|
|
65
|
-
"eslint": "^9.
|
|
65
|
+
"eslint": "^9.39.1",
|
|
66
66
|
"eslint-config-prettier": "^10.1.8",
|
|
67
|
-
"eslint-plugin-svelte": "^3.
|
|
68
|
-
"globals": "^16.
|
|
67
|
+
"eslint-plugin-svelte": "^3.13.0",
|
|
68
|
+
"globals": "^16.5.0",
|
|
69
69
|
"prettier": "^3.6.2",
|
|
70
70
|
"prettier-plugin-svelte": "^3.4.0",
|
|
71
|
-
"publint": "^0.3.
|
|
72
|
-
"svelte": "^5.
|
|
71
|
+
"publint": "^0.3.15",
|
|
72
|
+
"svelte": "^5.43.3",
|
|
73
73
|
"svelte-check": "^4.3.3",
|
|
74
74
|
"typescript": "^5.9.3",
|
|
75
|
-
"typescript-eslint": "^8.46.
|
|
76
|
-
"vite": "^7.1.
|
|
77
|
-
"vitest": "^
|
|
75
|
+
"typescript-eslint": "^8.46.3",
|
|
76
|
+
"vite": "^7.1.12",
|
|
77
|
+
"vitest": "^4.0.6"
|
|
78
78
|
},
|
|
79
79
|
"svelte": "./dist/index.js",
|
|
80
80
|
"types": "./dist/index.d.ts",
|