@hashintel/ds-theme 0.0.1 → 0.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @hashintel/ds-theme
2
2
 
3
+ ## 0.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#8325](https://github.com/hashintel/hash/pull/8325) [`e05657c`](https://github.com/hashintel/hash/commit/e05657cc72ac702753bd6e5feaa5aac961c5f2e0) Thanks [@CiaranMn](https://github.com/CiaranMn)! - Fix publishing
8
+
3
9
  ## 0.0.1
4
10
 
5
11
  ### Patch Changes
package/dist/main.d.ts ADDED
@@ -0,0 +1,6 @@
1
+ import * as _pandacss_types0 from "@pandacss/types";
2
+
3
+ //#region src/main.d.ts
4
+ declare const preset: _pandacss_types0.Preset;
5
+ //#endregion
6
+ export { preset as default, preset };
package/dist/main.js ADDED
@@ -0,0 +1,25 @@
1
+ import { a as lineHeights, i as fonts, n as fontSizes, o as spacing, r as fontWeights, s as colors, t as radii, u as definePreset } from "./radii.gen-aroChr7P.js";
2
+
3
+ //#region src/main.ts
4
+ const preset = definePreset({
5
+ name: "@hashintel/ds-theme",
6
+ conditions: { extend: {
7
+ light: ":root &, .light &, [data-theme=light] &",
8
+ dark: ".dark &, [data-theme=\"dark\"] &"
9
+ } },
10
+ theme: {
11
+ tokens: {
12
+ spacing,
13
+ fonts,
14
+ fontWeights,
15
+ fontSizes,
16
+ lineHeights,
17
+ radii
18
+ },
19
+ extend: { semanticTokens: { colors } }
20
+ }
21
+ });
22
+ var main_default = preset;
23
+
24
+ //#endregion
25
+ export { main_default as default, preset };