noph-ui 0.30.4 → 0.30.5

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.
@@ -126,8 +126,6 @@
126
126
  overflow-x: hidden;
127
127
  flex: 1;
128
128
  padding: 0.5rem 0;
129
- scrollbar-color: var(--np-color-on-surface-variant) transparent;
130
- scrollbar-width: thin;
131
129
  }
132
130
  :global(.np-menu .np-divider) {
133
131
  margin-block: 0.5rem;
@@ -140,6 +138,8 @@
140
138
  padding: 0;
141
139
  box-shadow: var(--np-elevation-2);
142
140
  margin: var(--np-menu-margin, 2px);
141
+ scrollbar-color: var(--np-color-on-surface-variant) transparent;
142
+ scrollbar-width: thin;
143
143
  justify-self: var(--np-menu-justify-self, anchor-center);
144
144
  position-area: var(--np-menu-position-area, bottom center);
145
145
  position-try: normal flip-block;
package/package.json CHANGED
@@ -1,95 +1,96 @@
1
1
  {
2
- "name": "noph-ui",
3
- "version": "0.30.4",
4
- "license": "MIT",
5
- "homepage": "https://noph.dev",
6
- "repository": {
7
- "type": "git",
8
- "url": "git+https://github.com/cnolte/noph-ui.git"
9
- },
10
- "author": {
11
- "name": "cnolte"
12
- },
13
- "keywords": [
14
- "svelte",
15
- "svelte 5",
16
- "material",
17
- "material 3",
18
- "expressive",
19
- "material you",
20
- "material expressive",
21
- "m3",
22
- "ui",
23
- "frontend",
24
- "design-system",
25
- "ui-library",
26
- "theming"
27
- ],
28
- "exports": {
29
- ".": {
30
- "types": "./dist/index.d.ts",
31
- "svelte": "./dist/index.js"
32
- },
33
- "./icons": {
34
- "types": "./dist/icons/index.d.ts",
35
- "svelte": "./dist/icons/index.js"
36
- },
37
- "./types": {
38
- "types": "./dist/types.d.ts"
39
- },
40
- "./defaultTheme": {
41
- "import": "./dist/themes/defaultTheme.css",
42
- "require": "./dist/themes/defaultTheme.css"
43
- }
44
- },
45
- "sideEffects": [
46
- "**/*.css"
47
- ],
48
- "files": [
49
- "dist",
50
- "!dist/**/*.test.*",
51
- "!dist/**/*.spec.*"
52
- ],
53
- "peerDependencies": {
54
- "svelte": "^5.40.0"
55
- },
56
- "devDependencies": {
57
- "@eslint/js": "^9.39.1",
58
- "@material/material-color-utilities": "^0.3.0",
59
- "@playwright/test": "^1.57.0",
60
- "@sveltejs/adapter-auto": "^7.0.0",
61
- "@sveltejs/kit": "^2.49.1",
62
- "@sveltejs/package": "^2.5.7",
63
- "@sveltejs/vite-plugin-svelte": "^6.2.1",
64
- "@types/eslint": "^9.6.1",
65
- "eslint": "^9.39.1",
66
- "eslint-config-prettier": "^10.1.8",
67
- "eslint-plugin-svelte": "^3.13.1",
68
- "globals": "^16.5.0",
69
- "prettier": "^3.7.4",
70
- "prettier-plugin-svelte": "^3.4.0",
71
- "publint": "^0.3.15",
72
- "svelte": "^5.45.5",
73
- "svelte-check": "^4.3.4",
74
- "typescript": "^5.9.3",
75
- "typescript-eslint": "^8.48.1",
76
- "vite": "^7.2.6",
77
- "vitest": "^4.0.15"
78
- },
79
- "svelte": "./dist/index.js",
80
- "types": "./dist/index.d.ts",
81
- "type": "module",
82
- "scripts": {
83
- "dev": "vite dev",
84
- "build": "vite build && npm run package",
85
- "preview": "vite preview",
86
- "package": "svelte-kit sync && svelte-package && publint",
87
- "test": "npm run test:integration && npm run test:unit",
88
- "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
89
- "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
90
- "lint": "prettier --check . && eslint .",
91
- "format": "prettier --write .",
92
- "test:integration": "playwright test",
93
- "test:unit": "vitest"
94
- }
95
- }
2
+ "name": "noph-ui",
3
+ "version": "0.30.5",
4
+ "license": "MIT",
5
+ "homepage": "https://noph.dev",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/cnolte/noph-ui.git"
9
+ },
10
+ "author": {
11
+ "name": "cnolte"
12
+ },
13
+ "keywords": [
14
+ "svelte",
15
+ "svelte 5",
16
+ "material",
17
+ "material 3",
18
+ "expressive",
19
+ "material you",
20
+ "material expressive",
21
+ "m3",
22
+ "ui",
23
+ "frontend",
24
+ "design-system",
25
+ "ui-library",
26
+ "theming"
27
+ ],
28
+ "scripts": {
29
+ "dev": "vite dev",
30
+ "build": "vite build && npm run package",
31
+ "preview": "vite preview",
32
+ "package": "svelte-kit sync && svelte-package && publint",
33
+ "prepublishOnly": "npm run package",
34
+ "test": "npm run test:integration && npm run test:unit",
35
+ "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
36
+ "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
37
+ "lint": "prettier --check . && eslint .",
38
+ "format": "prettier --write .",
39
+ "test:integration": "playwright test",
40
+ "test:unit": "vitest"
41
+ },
42
+ "exports": {
43
+ ".": {
44
+ "types": "./dist/index.d.ts",
45
+ "svelte": "./dist/index.js"
46
+ },
47
+ "./icons": {
48
+ "types": "./dist/icons/index.d.ts",
49
+ "svelte": "./dist/icons/index.js"
50
+ },
51
+ "./types": {
52
+ "types": "./dist/types.d.ts"
53
+ },
54
+ "./defaultTheme": {
55
+ "import": "./dist/themes/defaultTheme.css",
56
+ "require": "./dist/themes/defaultTheme.css"
57
+ }
58
+ },
59
+ "sideEffects": [
60
+ "**/*.css"
61
+ ],
62
+ "files": [
63
+ "dist",
64
+ "!dist/**/*.test.*",
65
+ "!dist/**/*.spec.*"
66
+ ],
67
+ "peerDependencies": {
68
+ "svelte": "^5.40.0"
69
+ },
70
+ "devDependencies": {
71
+ "@eslint/js": "^9.39.1",
72
+ "@material/material-color-utilities": "^0.3.0",
73
+ "@playwright/test": "^1.57.0",
74
+ "@sveltejs/adapter-auto": "^7.0.0",
75
+ "@sveltejs/kit": "^2.49.2",
76
+ "@sveltejs/package": "^2.5.7",
77
+ "@sveltejs/vite-plugin-svelte": "^6.2.1",
78
+ "@types/eslint": "^9.6.1",
79
+ "eslint": "^9.39.1",
80
+ "eslint-config-prettier": "^10.1.8",
81
+ "eslint-plugin-svelte": "^3.13.1",
82
+ "globals": "^16.5.0",
83
+ "prettier": "^3.7.4",
84
+ "prettier-plugin-svelte": "^3.4.0",
85
+ "publint": "^0.3.16",
86
+ "svelte": "^5.45.8",
87
+ "svelte-check": "^4.3.4",
88
+ "typescript": "^5.9.3",
89
+ "typescript-eslint": "^8.49.0",
90
+ "vite": "^7.2.7",
91
+ "vitest": "^4.0.15"
92
+ },
93
+ "svelte": "./dist/index.js",
94
+ "types": "./dist/index.d.ts",
95
+ "type": "module"
96
+ }