@kopexa/theme 1.6.2 → 1.6.3

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 (37) hide show
  1. package/dist/{chunk-5QIMO5EG.mjs → chunk-2BPKTGNE.mjs} +1 -1
  2. package/dist/chunk-755GJHKQ.mjs +23 -0
  3. package/dist/chunk-IKJHZT2S.mjs +19 -0
  4. package/dist/{chunk-DQEPGWAN.mjs → chunk-JX7F3NZL.mjs} +1 -1
  5. package/dist/{chunk-25L2JS6A.mjs → chunk-UEMJVVVF.mjs} +6 -1
  6. package/dist/{chunk-CQDTDA47.mjs → chunk-UMSU2ZEG.mjs} +1 -1
  7. package/dist/chunk-Z6LF6RPD.mjs +32 -0
  8. package/dist/components/avatar.mjs +2 -2
  9. package/dist/components/button.mjs +2 -2
  10. package/dist/components/hover-card.d.mts +32 -0
  11. package/dist/components/hover-card.d.ts +32 -0
  12. package/dist/components/hover-card.js +51 -0
  13. package/dist/components/hover-card.mjs +7 -0
  14. package/dist/components/index.d.mts +1 -0
  15. package/dist/components/index.d.ts +1 -0
  16. package/dist/components/index.js +77 -52
  17. package/dist/components/index.mjs +16 -12
  18. package/dist/components/input.mjs +2 -2
  19. package/dist/components/popover.js +11 -3
  20. package/dist/components/popover.mjs +2 -1
  21. package/dist/components/section-row.d.mts +12 -15
  22. package/dist/components/section-row.d.ts +12 -15
  23. package/dist/components/section-row.js +13 -10
  24. package/dist/components/section-row.mjs +1 -1
  25. package/dist/index.css +0 -37
  26. package/dist/index.d.mts +1 -0
  27. package/dist/index.d.ts +1 -0
  28. package/dist/index.js +77 -52
  29. package/dist/index.mjs +16 -12
  30. package/dist/utils/classes.d.mts +2 -1
  31. package/dist/utils/classes.d.ts +2 -1
  32. package/dist/utils/classes.js +6 -0
  33. package/dist/utils/classes.mjs +3 -1
  34. package/package.json +1 -1
  35. package/dist/chunk-J35D7RWA.mjs +0 -15
  36. package/dist/chunk-TT5V2MUL.mjs +0 -29
  37. /package/dist/{chunk-GZPF57JX.mjs → chunk-RH7YHIQY.mjs} +0 -0
@@ -2,11 +2,13 @@ import {
2
2
  dataFocusVisibleClasses,
3
3
  focusVisibleClasses,
4
4
  focusWithinClasses,
5
+ popoverContentClasses,
5
6
  translateCenterClasses
6
- } from "../chunk-25L2JS6A.mjs";
7
+ } from "../chunk-UEMJVVVF.mjs";
7
8
  export {
8
9
  dataFocusVisibleClasses,
9
10
  focusVisibleClasses,
10
11
  focusWithinClasses,
12
+ popoverContentClasses,
11
13
  translateCenterClasses
12
14
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kopexa/theme",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "The default theme for Kopexa components",
5
5
  "keywords": [
6
6
  "theme",
@@ -1,15 +0,0 @@
1
- // src/components/popover.ts
2
- import { tv } from "tailwind-variants";
3
- var popover = tv({
4
- slots: {
5
- content: [
6
- "bg-popover text-popover-foreground z-50 w-72",
7
- "origin-(--radix-popover-content-transform-origin)",
8
- "rounded-md border p-4 shadow-md outline-hidden"
9
- ]
10
- }
11
- });
12
-
13
- export {
14
- popover
15
- };
@@ -1,29 +0,0 @@
1
- // src/components/section-row.ts
2
- import { tv } from "tailwind-variants";
3
- var sectionRow = tv({
4
- slots: {
5
- root: ["section-row items-start"],
6
- title: "section-row__title text-muted-foreground text-sm font-semibold",
7
- valueText: "whitespace-pre-line text-pretty text-sm",
8
- valueContainer: "section-row__value-container flex flex-wrap gap-1",
9
- action: "section-row__action"
10
- },
11
- variants: {
12
- hasActions: {
13
- true: {
14
- root: [
15
- "has-actions"
16
- //"md:grid-cols-[min(40%,--spacing(80))_auto_28px]",
17
- ]
18
- },
19
- false: {}
20
- }
21
- },
22
- defaultVariants: {
23
- hasActions: false
24
- }
25
- });
26
-
27
- export {
28
- sectionRow
29
- };
File without changes