@ohhwells/bridge 0.1.27 → 0.1.29-next.20
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/README.md +304 -304
- package/dist/index.cjs +20 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +20 -10
- package/dist/index.js.map +1 -1
- package/dist/styles.css +8 -8
- package/package.json +48 -48
package/dist/styles.css
CHANGED
|
@@ -1123,7 +1123,7 @@
|
|
|
1123
1123
|
--ohw-success: #16a34a;
|
|
1124
1124
|
--ohw-hover-success: #15803d;
|
|
1125
1125
|
}
|
|
1126
|
-
[data-ohw-link-modal-root],
|
|
1126
|
+
[data-ohw-link-modal-root],
|
|
1127
1127
|
[data-ohw-link-popover-root] {
|
|
1128
1128
|
--ohw-background: #ffffff;
|
|
1129
1129
|
--ohw-foreground: #0c0a09;
|
|
@@ -1161,25 +1161,25 @@
|
|
|
1161
1161
|
letter-spacing: normal;
|
|
1162
1162
|
line-height: normal;
|
|
1163
1163
|
}
|
|
1164
|
-
[data-ohw-link-modal-root] :is(h1, h2, h3, h4, h5, h6, p, label, input, button, span, a, li),
|
|
1164
|
+
[data-ohw-link-modal-root] :is(h1, h2, h3, h4, h5, h6, p, label, input, button, span, a, li),
|
|
1165
1165
|
[data-ohw-link-popover-root] :is(h1, h2, h3, h4, h5, h6, p, label, input, button, span, a, li) {
|
|
1166
1166
|
font-family: var(--font-sans);
|
|
1167
1167
|
letter-spacing: normal;
|
|
1168
1168
|
}
|
|
1169
|
-
[data-ohw-link-modal-root] h2,
|
|
1169
|
+
[data-ohw-link-modal-root] h2,
|
|
1170
1170
|
[data-ohw-link-popover-root] h2 {
|
|
1171
1171
|
font-weight: 600;
|
|
1172
1172
|
line-height: 1;
|
|
1173
1173
|
letter-spacing: -0.025em;
|
|
1174
1174
|
color: var(--ohw-card-foreground);
|
|
1175
1175
|
}
|
|
1176
|
-
[data-ohw-link-modal-root] p,
|
|
1176
|
+
[data-ohw-link-modal-root] p,
|
|
1177
1177
|
[data-ohw-link-popover-root] p {
|
|
1178
1178
|
font-weight: 400;
|
|
1179
1179
|
line-height: 1.25rem;
|
|
1180
1180
|
color: inherit;
|
|
1181
1181
|
}
|
|
1182
|
-
[data-ohw-link-modal-root] label,
|
|
1182
|
+
[data-ohw-link-modal-root] label,
|
|
1183
1183
|
[data-ohw-link-popover-root] label {
|
|
1184
1184
|
font-weight: 500;
|
|
1185
1185
|
line-height: 1.25rem;
|
|
@@ -1198,14 +1198,14 @@
|
|
|
1198
1198
|
border-color: var(--ohw-border);
|
|
1199
1199
|
color: var(--ohw-foreground);
|
|
1200
1200
|
}
|
|
1201
|
-
[data-ohw-link-modal-root] [data-ohw-link-field],
|
|
1201
|
+
[data-ohw-link-modal-root] [data-ohw-link-field],
|
|
1202
1202
|
[data-ohw-link-modal-root] [data-ohw-link-field] button {
|
|
1203
1203
|
font-family: var(--font-sans);
|
|
1204
1204
|
-webkit-appearance: none;
|
|
1205
1205
|
-moz-appearance: none;
|
|
1206
1206
|
appearance: none;
|
|
1207
1207
|
}
|
|
1208
|
-
[data-ohw-link-modal-root] [data-ohw-link-field] input,
|
|
1208
|
+
[data-ohw-link-modal-root] [data-ohw-link-field] input,
|
|
1209
1209
|
[data-ohw-link-modal-root] [data-ohw-link-field] [data-slot="input"] {
|
|
1210
1210
|
border: 0 !important;
|
|
1211
1211
|
outline: none !important;
|
|
@@ -1497,4 +1497,4 @@
|
|
|
1497
1497
|
--tw-drop-shadow-size: initial;
|
|
1498
1498
|
}
|
|
1499
1499
|
}
|
|
1500
|
-
}
|
|
1500
|
+
}
|
package/package.json
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ohhwells/bridge",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"private": false,
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.cjs",
|
|
7
|
-
"module": "./dist/index.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/index.js",
|
|
13
|
-
"require": "./dist/index.cjs"
|
|
14
|
-
},
|
|
15
|
-
"./styles": "./dist/styles.css"
|
|
16
|
-
},
|
|
17
|
-
"files": [
|
|
18
|
-
"dist"
|
|
19
|
-
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "tsup && postcss src/styles.css -o dist/styles.css",
|
|
22
|
-
"dev": "tsup --watch"
|
|
23
|
-
},
|
|
24
|
-
"peerDependencies": {
|
|
25
|
-
"next": ">=14",
|
|
26
|
-
"react": ">=18",
|
|
27
|
-
"react-dom": ">=18"
|
|
28
|
-
},
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@radix-ui/react-slot": "^1.3.0",
|
|
31
|
-
"radix-ui": "^1.4.3"
|
|
32
|
-
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"@tailwindcss/postcss": "^4",
|
|
35
|
-
"@types/node": "^26.0.0",
|
|
36
|
-
"@types/react": "^18",
|
|
37
|
-
"@types/react-dom": "^18",
|
|
38
|
-
"autoprefixer": "^10.4.0",
|
|
39
|
-
"class-variance-authority": "^0.7.1",
|
|
40
|
-
"clsx": "^2.1.1",
|
|
41
|
-
"postcss": "^8.4.0",
|
|
42
|
-
"postcss-cli": "^11.0.0",
|
|
43
|
-
"tailwind-merge": "^3.6.0",
|
|
44
|
-
"tailwindcss": "^4",
|
|
45
|
-
"tsup": "^8.0.0",
|
|
46
|
-
"typescript": "^5"
|
|
47
|
-
}
|
|
48
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@ohhwells/bridge",
|
|
3
|
+
"version": "0.1.29-next.20",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./styles": "./dist/styles.css"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsup && postcss src/styles.css -o dist/styles.css",
|
|
22
|
+
"dev": "tsup --watch"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"next": ">=14",
|
|
26
|
+
"react": ">=18",
|
|
27
|
+
"react-dom": ">=18"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@radix-ui/react-slot": "^1.3.0",
|
|
31
|
+
"radix-ui": "^1.4.3"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@tailwindcss/postcss": "^4",
|
|
35
|
+
"@types/node": "^26.0.0",
|
|
36
|
+
"@types/react": "^18",
|
|
37
|
+
"@types/react-dom": "^18",
|
|
38
|
+
"autoprefixer": "^10.4.0",
|
|
39
|
+
"class-variance-authority": "^0.7.1",
|
|
40
|
+
"clsx": "^2.1.1",
|
|
41
|
+
"postcss": "^8.4.0",
|
|
42
|
+
"postcss-cli": "^11.0.0",
|
|
43
|
+
"tailwind-merge": "^3.6.0",
|
|
44
|
+
"tailwindcss": "^4",
|
|
45
|
+
"tsup": "^8.0.0",
|
|
46
|
+
"typescript": "^5"
|
|
47
|
+
}
|
|
48
|
+
}
|