@inf-monkeys-tech/monkeys-design 0.4.32 → 0.4.34

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.
Files changed (57) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +226 -226
  3. package/dist/components/base/index.d.mts +2 -2
  4. package/dist/components/base/index.d.ts +2 -2
  5. package/dist/components/base/index.js +990 -28
  6. package/dist/components/base/index.js.map +1 -1
  7. package/dist/components/base/index.mjs +987 -30
  8. package/dist/components/base/index.mjs.map +1 -1
  9. package/dist/components/data-explorer/index.js.map +1 -1
  10. package/dist/components/data-explorer/index.mjs.map +1 -1
  11. package/dist/components/layout/index.js.map +1 -1
  12. package/dist/components/layout/index.mjs.map +1 -1
  13. package/dist/components/login/index.js.map +1 -1
  14. package/dist/components/login/index.mjs.map +1 -1
  15. package/dist/components/toolbar/index.js.map +1 -1
  16. package/dist/components/toolbar/index.mjs.map +1 -1
  17. package/dist/components/workbench/index.d.mts +193 -2
  18. package/dist/components/workbench/index.d.ts +193 -2
  19. package/dist/components/workbench/index.js +2164 -585
  20. package/dist/components/workbench/index.js.map +1 -1
  21. package/dist/components/workbench/index.mjs +2367 -813
  22. package/dist/components/workbench/index.mjs.map +1 -1
  23. package/dist/icons/oauth/index.js.map +1 -1
  24. package/dist/icons/oauth/index.mjs.map +1 -1
  25. package/dist/index.d.mts +3 -3
  26. package/dist/index.d.ts +3 -3
  27. package/dist/index.js +1958 -170
  28. package/dist/index.js.map +1 -1
  29. package/dist/index.mjs +1950 -172
  30. package/dist/index.mjs.map +1 -1
  31. package/dist/palette/index.js.map +1 -1
  32. package/dist/palette/index.mjs.map +1 -1
  33. package/dist/registry/index.js.map +1 -1
  34. package/dist/registry/index.mjs.map +1 -1
  35. package/dist/styles/artist-login.scss +374 -374
  36. package/dist/styles/global.scss +21 -21
  37. package/dist/styles/workflow-board.scss +440 -440
  38. package/dist/styles/workflow-nodes.css +340 -340
  39. package/dist/{theme-CvbotXXr.d.ts → theme-Clm5dVb0.d.mts} +10 -3
  40. package/dist/{theme-6RDum855.d.mts → theme-sIoU5-YC.d.ts} +10 -3
  41. package/dist/theme-system/index.d.mts +1 -1
  42. package/dist/theme-system/index.d.ts +1 -1
  43. package/dist/theme-system/index.js +842 -18
  44. package/dist/theme-system/index.js.map +1 -1
  45. package/dist/theme-system/index.mjs +843 -19
  46. package/dist/theme-system/index.mjs.map +1 -1
  47. package/dist/themes/artist/index.js.map +1 -1
  48. package/dist/themes/artist/index.mjs.map +1 -1
  49. package/dist/themes/bsd/index.js.map +1 -1
  50. package/dist/themes/bsd/index.mjs.map +1 -1
  51. package/dist/themes/concept/index.js.map +1 -1
  52. package/dist/themes/concept/index.mjs.map +1 -1
  53. package/dist/themes/default/index.js.map +1 -1
  54. package/dist/themes/default/index.mjs.map +1 -1
  55. package/dist/{types-BgEEUqSm.d.mts → types-Bn6PEDsX.d.mts} +163 -1
  56. package/dist/{types-BgEEUqSm.d.ts → types-Bn6PEDsX.d.ts} +163 -1
  57. package/package.json +139 -138
@@ -1,21 +1,21 @@
1
- /**
2
- * Monkeys UI global body background styles.
3
- *
4
- * The gradient is derived from the primary theme color (--monkeys-100, generated by the
5
- * palette system from theme.colors.primaryColor) and the base gray background (--gray1
6
- * from windy-radix-palette).
7
- *
8
- * Requirements for the consuming app:
9
- * - The monkeys color scale (--monkeys-* CSS vars set by setTailwindTheme from the palette module)
10
- * - windy-radix-palette Tailwind plugin (for gray color vars)
11
- * - Tailwind CSS (for theme() and @apply resolution at build time)
12
- */
13
-
14
- body {
15
- background: linear-gradient(theme('colors.monkeys.100/0.35') 0%, theme('colors.gray.1') 50%);
16
- overflow: hidden;
17
- }
18
-
19
- html.dark body {
20
- @apply bg-gray-2;
21
- }
1
+ /**
2
+ * Monkeys UI global body background styles.
3
+ *
4
+ * The gradient is derived from the primary theme color (--monkeys-100, generated by the
5
+ * palette system from theme.colors.primaryColor) and the base gray background (--gray1
6
+ * from windy-radix-palette).
7
+ *
8
+ * Requirements for the consuming app:
9
+ * - The monkeys color scale (--monkeys-* CSS vars set by setTailwindTheme from the palette module)
10
+ * - windy-radix-palette Tailwind plugin (for gray color vars)
11
+ * - Tailwind CSS (for theme() and @apply resolution at build time)
12
+ */
13
+
14
+ body {
15
+ background: linear-gradient(theme('colors.monkeys.100/0.35') 0%, theme('colors.gray.1') 50%);
16
+ overflow: hidden;
17
+ }
18
+
19
+ html.dark body {
20
+ @apply bg-gray-2;
21
+ }