@dbx-tools/ui-appkit 0.1.22 → 0.1.24
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.css +7 -0
package/package.json
CHANGED
|
@@ -21,14 +21,15 @@
|
|
|
21
21
|
"react-dom": "^19.2.4",
|
|
22
22
|
"streamdown": "^2.5.0",
|
|
23
23
|
"tailwindcss": "^4.3.2",
|
|
24
|
-
"@dbx-tools/shared-core": "0.1.
|
|
24
|
+
"@dbx-tools/shared-core": "0.1.24",
|
|
25
|
+
"@dbx-tools/ui-branding": "0.1.24"
|
|
25
26
|
},
|
|
26
27
|
"main": "index.ts",
|
|
27
28
|
"license": "UNLICENSED",
|
|
28
29
|
"publishConfig": {
|
|
29
30
|
"access": "public"
|
|
30
31
|
},
|
|
31
|
-
"version": "0.1.
|
|
32
|
+
"version": "0.1.24",
|
|
32
33
|
"types": "index.ts",
|
|
33
34
|
"type": "module",
|
|
34
35
|
"exports": {
|
package/src/styles.css
CHANGED
|
@@ -11,6 +11,13 @@
|
|
|
11
11
|
|
|
12
12
|
@import "tailwindcss";
|
|
13
13
|
@import "streamdown/styles.css";
|
|
14
|
+
/*
|
|
15
|
+
* Brand -> AppKit token bridge. Scoped to `:root[data-brand]`, so it is inert
|
|
16
|
+
* until a host applies a brand (see `@dbx-tools/ui-branding` `applyBrandContext`
|
|
17
|
+
* / `BrandProvider applyToDocument`). Imported here so it travels with every
|
|
18
|
+
* feature UI package that depends on this shared base.
|
|
19
|
+
*/
|
|
20
|
+
@import "@dbx-tools/ui-branding/brand-bridge.css";
|
|
14
21
|
|
|
15
22
|
@source "./react";
|
|
16
23
|
|