@kopexa/theme 17.3.0 → 17.4.1

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.
@@ -6,7 +6,7 @@ var accordion = tv({
6
6
  item: "border-b last:border-b-0",
7
7
  trigger: [
8
8
  "w-full",
9
- "focus-visible:border-ring focus-visible:ring-ring/50 flex flex-1 items-start justify-between gap-4 rounded-md py-4 text-left text-sm font-medium transition-all outline-none hover:underline focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 [&[data-state=open]>svg]:rotate-180"
9
+ "focus-visible:border-ring focus-visible:ring-ring/50 flex flex-1 items-center justify-between gap-4 rounded-md text-left text-sm font-medium transition-all outline-none hover:underline focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 [&[data-state=open]>svg]:rotate-180"
10
10
  ],
11
11
  triggerIcon: [
12
12
  "pointer-events-none size-4 shrink-0 translate-y-0.5 transition-transform duration-200"
@@ -55,13 +55,25 @@ var accordion = tv({
55
55
  trigger: "px-4",
56
56
  content: "px-4"
57
57
  }
58
+ },
59
+ triggerSpacing: {
60
+ sm: {
61
+ trigger: "py-2"
62
+ },
63
+ md: {
64
+ trigger: "py-3"
65
+ },
66
+ lg: {
67
+ trigger: "py-4"
68
+ }
58
69
  }
59
70
  },
60
71
  defaultVariants: {
61
72
  color: "default",
62
73
  spacing: "default",
63
74
  radius: "md",
64
- border: "default"
75
+ border: "default",
76
+ triggerSpacing: "lg"
65
77
  }
66
78
  });
67
79
 
@@ -40,6 +40,17 @@ declare const accordion: tailwind_variants.TVReturnType<{
40
40
  content: string;
41
41
  };
42
42
  };
43
+ triggerSpacing: {
44
+ sm: {
45
+ trigger: string;
46
+ };
47
+ md: {
48
+ trigger: string;
49
+ };
50
+ lg: {
51
+ trigger: string;
52
+ };
53
+ };
43
54
  }, {
44
55
  root: string;
45
56
  item: string;
@@ -86,6 +97,17 @@ declare const accordion: tailwind_variants.TVReturnType<{
86
97
  content: string;
87
98
  };
88
99
  };
100
+ triggerSpacing: {
101
+ sm: {
102
+ trigger: string;
103
+ };
104
+ md: {
105
+ trigger: string;
106
+ };
107
+ lg: {
108
+ trigger: string;
109
+ };
110
+ };
89
111
  }, {
90
112
  root: string;
91
113
  item: string;
@@ -132,6 +154,17 @@ declare const accordion: tailwind_variants.TVReturnType<{
132
154
  content: string;
133
155
  };
134
156
  };
157
+ triggerSpacing: {
158
+ sm: {
159
+ trigger: string;
160
+ };
161
+ md: {
162
+ trigger: string;
163
+ };
164
+ lg: {
165
+ trigger: string;
166
+ };
167
+ };
135
168
  }, {
136
169
  root: string;
137
170
  item: string;
@@ -40,6 +40,17 @@ declare const accordion: tailwind_variants.TVReturnType<{
40
40
  content: string;
41
41
  };
42
42
  };
43
+ triggerSpacing: {
44
+ sm: {
45
+ trigger: string;
46
+ };
47
+ md: {
48
+ trigger: string;
49
+ };
50
+ lg: {
51
+ trigger: string;
52
+ };
53
+ };
43
54
  }, {
44
55
  root: string;
45
56
  item: string;
@@ -86,6 +97,17 @@ declare const accordion: tailwind_variants.TVReturnType<{
86
97
  content: string;
87
98
  };
88
99
  };
100
+ triggerSpacing: {
101
+ sm: {
102
+ trigger: string;
103
+ };
104
+ md: {
105
+ trigger: string;
106
+ };
107
+ lg: {
108
+ trigger: string;
109
+ };
110
+ };
89
111
  }, {
90
112
  root: string;
91
113
  item: string;
@@ -132,6 +154,17 @@ declare const accordion: tailwind_variants.TVReturnType<{
132
154
  content: string;
133
155
  };
134
156
  };
157
+ triggerSpacing: {
158
+ sm: {
159
+ trigger: string;
160
+ };
161
+ md: {
162
+ trigger: string;
163
+ };
164
+ lg: {
165
+ trigger: string;
166
+ };
167
+ };
135
168
  }, {
136
169
  root: string;
137
170
  item: string;
@@ -30,7 +30,7 @@ var accordion = (0, import_tailwind_variants.tv)({
30
30
  item: "border-b last:border-b-0",
31
31
  trigger: [
32
32
  "w-full",
33
- "focus-visible:border-ring focus-visible:ring-ring/50 flex flex-1 items-start justify-between gap-4 rounded-md py-4 text-left text-sm font-medium transition-all outline-none hover:underline focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 [&[data-state=open]>svg]:rotate-180"
33
+ "focus-visible:border-ring focus-visible:ring-ring/50 flex flex-1 items-center justify-between gap-4 rounded-md text-left text-sm font-medium transition-all outline-none hover:underline focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 [&[data-state=open]>svg]:rotate-180"
34
34
  ],
35
35
  triggerIcon: [
36
36
  "pointer-events-none size-4 shrink-0 translate-y-0.5 transition-transform duration-200"
@@ -79,13 +79,25 @@ var accordion = (0, import_tailwind_variants.tv)({
79
79
  trigger: "px-4",
80
80
  content: "px-4"
81
81
  }
82
+ },
83
+ triggerSpacing: {
84
+ sm: {
85
+ trigger: "py-2"
86
+ },
87
+ md: {
88
+ trigger: "py-3"
89
+ },
90
+ lg: {
91
+ trigger: "py-4"
92
+ }
82
93
  }
83
94
  },
84
95
  defaultVariants: {
85
96
  color: "default",
86
97
  spacing: "default",
87
98
  radius: "md",
88
- border: "default"
99
+ border: "default",
100
+ triggerSpacing: "lg"
89
101
  }
90
102
  });
91
103
  // Annotate the CommonJS export names for ESM import in node:
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  accordion
3
- } from "../chunk-TLCFFCOP.mjs";
3
+ } from "../chunk-AEWKHJEI.mjs";
4
4
  export {
5
5
  accordion
6
6
  };
@@ -96,7 +96,7 @@ var accordion = (0, import_tailwind_variants.tv)({
96
96
  item: "border-b last:border-b-0",
97
97
  trigger: [
98
98
  "w-full",
99
- "focus-visible:border-ring focus-visible:ring-ring/50 flex flex-1 items-start justify-between gap-4 rounded-md py-4 text-left text-sm font-medium transition-all outline-none hover:underline focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 [&[data-state=open]>svg]:rotate-180"
99
+ "focus-visible:border-ring focus-visible:ring-ring/50 flex flex-1 items-center justify-between gap-4 rounded-md text-left text-sm font-medium transition-all outline-none hover:underline focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 [&[data-state=open]>svg]:rotate-180"
100
100
  ],
101
101
  triggerIcon: [
102
102
  "pointer-events-none size-4 shrink-0 translate-y-0.5 transition-transform duration-200"
@@ -145,13 +145,25 @@ var accordion = (0, import_tailwind_variants.tv)({
145
145
  trigger: "px-4",
146
146
  content: "px-4"
147
147
  }
148
+ },
149
+ triggerSpacing: {
150
+ sm: {
151
+ trigger: "py-2"
152
+ },
153
+ md: {
154
+ trigger: "py-3"
155
+ },
156
+ lg: {
157
+ trigger: "py-4"
158
+ }
148
159
  }
149
160
  },
150
161
  defaultVariants: {
151
162
  color: "default",
152
163
  spacing: "default",
153
164
  radius: "md",
154
- border: "default"
165
+ border: "default",
166
+ triggerSpacing: "lg"
155
167
  }
156
168
  });
157
169
 
@@ -1,4 +1,28 @@
1
1
  import "../chunk-BYXTAZ4I.mjs";
2
+ import {
3
+ tabs
4
+ } from "../chunk-I6M4S2KZ.mjs";
5
+ import {
6
+ textarea
7
+ } from "../chunk-ARLLAC5V.mjs";
8
+ import {
9
+ toolbar
10
+ } from "../chunk-2NA54PNL.mjs";
11
+ import {
12
+ tooltip
13
+ } from "../chunk-OLYO7UPH.mjs";
14
+ import {
15
+ skeleton
16
+ } from "../chunk-VNQEJU4P.mjs";
17
+ import {
18
+ slashDropdownMenu
19
+ } from "../chunk-NNKYGAZC.mjs";
20
+ import {
21
+ spinner
22
+ } from "../chunk-4UDOCFU5.mjs";
23
+ import {
24
+ splitPageLayout
25
+ } from "../chunk-W7RJG22S.mjs";
2
26
  import {
3
27
  standardChip
4
28
  } from "../chunk-XQZL7LCP.mjs";
@@ -12,17 +36,17 @@ import {
12
36
  table
13
37
  } from "../chunk-YC2FQDBV.mjs";
14
38
  import {
15
- tabs
16
- } from "../chunk-I6M4S2KZ.mjs";
39
+ riskBadge
40
+ } from "../chunk-V2J5XG34.mjs";
17
41
  import {
18
- textarea
19
- } from "../chunk-ARLLAC5V.mjs";
42
+ riskIndicator
43
+ } from "../chunk-CZMZHA7U.mjs";
20
44
  import {
21
- toolbar
22
- } from "../chunk-2NA54PNL.mjs";
45
+ scrollArea
46
+ } from "../chunk-SPQE7K66.mjs";
23
47
  import {
24
- tooltip
25
- } from "../chunk-OLYO7UPH.mjs";
48
+ sectionRow
49
+ } from "../chunk-CC225WUG.mjs";
26
50
  import {
27
51
  select
28
52
  } from "../chunk-KPVLNOO5.mjs";
@@ -38,17 +62,17 @@ import {
38
62
  skeletonAvatar
39
63
  } from "../chunk-7Q2RNHL5.mjs";
40
64
  import {
41
- skeleton
42
- } from "../chunk-VNQEJU4P.mjs";
65
+ label
66
+ } from "../chunk-LMCM4CW2.mjs";
43
67
  import {
44
- slashDropdownMenu
45
- } from "../chunk-NNKYGAZC.mjs";
68
+ loadingPage
69
+ } from "../chunk-ZOTN264E.mjs";
46
70
  import {
47
- spinner
48
- } from "../chunk-4UDOCFU5.mjs";
71
+ pageHeader
72
+ } from "../chunk-HAVJ6EQ6.mjs";
49
73
  import {
50
- splitPageLayout
51
- } from "../chunk-W7RJG22S.mjs";
74
+ pageLayout
75
+ } from "../chunk-OULAICSC.mjs";
52
76
  import {
53
77
  popover
54
78
  } from "../chunk-TQVRNEIH.mjs";
@@ -62,17 +86,14 @@ import {
62
86
  resizable
63
87
  } from "../chunk-RV656WRF.mjs";
64
88
  import {
65
- riskBadge
66
- } from "../chunk-V2J5XG34.mjs";
67
- import {
68
- riskIndicator
69
- } from "../chunk-CZMZHA7U.mjs";
89
+ hoverCard
90
+ } from "../chunk-UTCVHVWF.mjs";
70
91
  import {
71
- scrollArea
72
- } from "../chunk-SPQE7K66.mjs";
92
+ imageCrop
93
+ } from "../chunk-GMFZLUU4.mjs";
73
94
  import {
74
- sectionRow
75
- } from "../chunk-CC225WUG.mjs";
95
+ inputGroup
96
+ } from "../chunk-HWEYNK3O.mjs";
76
97
  import {
77
98
  inputWrapper
78
99
  } from "../chunk-VSVGOX3P.mjs";
@@ -83,17 +104,17 @@ import {
83
104
  kbd
84
105
  } from "../chunk-BETLBSSF.mjs";
85
106
  import {
86
- label
87
- } from "../chunk-LMCM4CW2.mjs";
107
+ drawer
108
+ } from "../chunk-7V3NMVQH.mjs";
88
109
  import {
89
- loadingPage
90
- } from "../chunk-ZOTN264E.mjs";
110
+ dialog
111
+ } from "../chunk-OJDCD74N.mjs";
91
112
  import {
92
- pageHeader
93
- } from "../chunk-HAVJ6EQ6.mjs";
113
+ dropdownMenu
114
+ } from "../chunk-3PCDCW7G.mjs";
94
115
  import {
95
- pageLayout
96
- } from "../chunk-OULAICSC.mjs";
116
+ editorBasic
117
+ } from "../chunk-XOL7P7NP.mjs";
97
118
  import {
98
119
  editorSpinner
99
120
  } from "../chunk-TVC4THD6.mjs";
@@ -107,14 +128,17 @@ import {
107
128
  heading
108
129
  } from "../chunk-NWKBPO37.mjs";
109
130
  import {
110
- hoverCard
111
- } from "../chunk-UTCVHVWF.mjs";
131
+ chip
132
+ } from "../chunk-5LVKFTZS.mjs";
112
133
  import {
113
- imageCrop
114
- } from "../chunk-GMFZLUU4.mjs";
134
+ code
135
+ } from "../chunk-VQ2OAHGP.mjs";
115
136
  import {
116
- inputGroup
117
- } from "../chunk-HWEYNK3O.mjs";
137
+ colorHighlightButton
138
+ } from "../chunk-CPERWXKN.mjs";
139
+ import {
140
+ combobox
141
+ } from "../chunk-76J7KB3M.mjs";
118
142
  import {
119
143
  command
120
144
  } from "../chunk-YPHFKGNI.mjs";
@@ -128,17 +152,17 @@ import {
128
152
  dataTable
129
153
  } from "../chunk-GNYTZGE5.mjs";
130
154
  import {
131
- drawer
132
- } from "../chunk-7V3NMVQH.mjs";
155
+ avatarGroup
156
+ } from "../chunk-XCLEKBCJ.mjs";
133
157
  import {
134
- dialog
135
- } from "../chunk-OJDCD74N.mjs";
158
+ avatar
159
+ } from "../chunk-D5FKEY7B.mjs";
136
160
  import {
137
- dropdownMenu
138
- } from "../chunk-3PCDCW7G.mjs";
161
+ blankstate
162
+ } from "../chunk-DICHD74Q.mjs";
139
163
  import {
140
- editorBasic
141
- } from "../chunk-XOL7P7NP.mjs";
164
+ button
165
+ } from "../chunk-OTETLRUE.mjs";
142
166
  import {
143
167
  calendar
144
168
  } from "../chunk-JWF5ABNP.mjs";
@@ -151,21 +175,10 @@ import {
151
175
  import {
152
176
  checkbox
153
177
  } from "../chunk-A4KO7QKC.mjs";
154
- import {
155
- chip
156
- } from "../chunk-5LVKFTZS.mjs";
157
- import {
158
- code
159
- } from "../chunk-VQ2OAHGP.mjs";
160
- import {
161
- colorHighlightButton
162
- } from "../chunk-CPERWXKN.mjs";
163
- import {
164
- combobox
165
- } from "../chunk-76J7KB3M.mjs";
178
+ import "../chunk-7T563RF7.mjs";
166
179
  import {
167
180
  accordion
168
- } from "../chunk-TLCFFCOP.mjs";
181
+ } from "../chunk-AEWKHJEI.mjs";
169
182
  import {
170
183
  alertDialog
171
184
  } from "../chunk-XGUDXC5P.mjs";
@@ -176,19 +189,6 @@ import {
176
189
  input,
177
190
  passwordInput
178
191
  } from "../chunk-K3EVZATS.mjs";
179
- import {
180
- avatarGroup
181
- } from "../chunk-XCLEKBCJ.mjs";
182
- import {
183
- avatar
184
- } from "../chunk-D5FKEY7B.mjs";
185
- import {
186
- blankstate
187
- } from "../chunk-DICHD74Q.mjs";
188
- import {
189
- button
190
- } from "../chunk-OTETLRUE.mjs";
191
- import "../chunk-7T563RF7.mjs";
192
192
  import "../chunk-6IZPAS4O.mjs";
193
193
  export {
194
194
  accordion,
package/dist/index.js CHANGED
@@ -96,7 +96,7 @@ var accordion = (0, import_tailwind_variants.tv)({
96
96
  item: "border-b last:border-b-0",
97
97
  trigger: [
98
98
  "w-full",
99
- "focus-visible:border-ring focus-visible:ring-ring/50 flex flex-1 items-start justify-between gap-4 rounded-md py-4 text-left text-sm font-medium transition-all outline-none hover:underline focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 [&[data-state=open]>svg]:rotate-180"
99
+ "focus-visible:border-ring focus-visible:ring-ring/50 flex flex-1 items-center justify-between gap-4 rounded-md text-left text-sm font-medium transition-all outline-none hover:underline focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 [&[data-state=open]>svg]:rotate-180"
100
100
  ],
101
101
  triggerIcon: [
102
102
  "pointer-events-none size-4 shrink-0 translate-y-0.5 transition-transform duration-200"
@@ -145,13 +145,25 @@ var accordion = (0, import_tailwind_variants.tv)({
145
145
  trigger: "px-4",
146
146
  content: "px-4"
147
147
  }
148
+ },
149
+ triggerSpacing: {
150
+ sm: {
151
+ trigger: "py-2"
152
+ },
153
+ md: {
154
+ trigger: "py-3"
155
+ },
156
+ lg: {
157
+ trigger: "py-4"
158
+ }
148
159
  }
149
160
  },
150
161
  defaultVariants: {
151
162
  color: "default",
152
163
  spacing: "default",
153
164
  radius: "md",
154
- border: "default"
165
+ border: "default",
166
+ triggerSpacing: "lg"
155
167
  }
156
168
  });
157
169
 
package/dist/index.mjs CHANGED
@@ -1,5 +1,28 @@
1
- import "./chunk-XSN6P5JL.mjs";
2
1
  import "./chunk-BYXTAZ4I.mjs";
2
+ import {
3
+ tabs
4
+ } from "./chunk-I6M4S2KZ.mjs";
5
+ import {
6
+ textarea
7
+ } from "./chunk-ARLLAC5V.mjs";
8
+ import {
9
+ toolbar
10
+ } from "./chunk-2NA54PNL.mjs";
11
+ import {
12
+ tooltip
13
+ } from "./chunk-OLYO7UPH.mjs";
14
+ import {
15
+ skeleton
16
+ } from "./chunk-VNQEJU4P.mjs";
17
+ import {
18
+ slashDropdownMenu
19
+ } from "./chunk-NNKYGAZC.mjs";
20
+ import {
21
+ spinner
22
+ } from "./chunk-4UDOCFU5.mjs";
23
+ import {
24
+ splitPageLayout
25
+ } from "./chunk-W7RJG22S.mjs";
3
26
  import {
4
27
  standardChip
5
28
  } from "./chunk-XQZL7LCP.mjs";
@@ -13,17 +36,17 @@ import {
13
36
  table
14
37
  } from "./chunk-YC2FQDBV.mjs";
15
38
  import {
16
- tabs
17
- } from "./chunk-I6M4S2KZ.mjs";
39
+ riskBadge
40
+ } from "./chunk-V2J5XG34.mjs";
18
41
  import {
19
- textarea
20
- } from "./chunk-ARLLAC5V.mjs";
42
+ riskIndicator
43
+ } from "./chunk-CZMZHA7U.mjs";
21
44
  import {
22
- toolbar
23
- } from "./chunk-2NA54PNL.mjs";
45
+ scrollArea
46
+ } from "./chunk-SPQE7K66.mjs";
24
47
  import {
25
- tooltip
26
- } from "./chunk-OLYO7UPH.mjs";
48
+ sectionRow
49
+ } from "./chunk-CC225WUG.mjs";
27
50
  import {
28
51
  select
29
52
  } from "./chunk-KPVLNOO5.mjs";
@@ -39,17 +62,17 @@ import {
39
62
  skeletonAvatar
40
63
  } from "./chunk-7Q2RNHL5.mjs";
41
64
  import {
42
- skeleton
43
- } from "./chunk-VNQEJU4P.mjs";
65
+ label
66
+ } from "./chunk-LMCM4CW2.mjs";
44
67
  import {
45
- slashDropdownMenu
46
- } from "./chunk-NNKYGAZC.mjs";
68
+ loadingPage
69
+ } from "./chunk-ZOTN264E.mjs";
47
70
  import {
48
- spinner
49
- } from "./chunk-4UDOCFU5.mjs";
71
+ pageHeader
72
+ } from "./chunk-HAVJ6EQ6.mjs";
50
73
  import {
51
- splitPageLayout
52
- } from "./chunk-W7RJG22S.mjs";
74
+ pageLayout
75
+ } from "./chunk-OULAICSC.mjs";
53
76
  import {
54
77
  popover
55
78
  } from "./chunk-TQVRNEIH.mjs";
@@ -63,17 +86,14 @@ import {
63
86
  resizable
64
87
  } from "./chunk-RV656WRF.mjs";
65
88
  import {
66
- riskBadge
67
- } from "./chunk-V2J5XG34.mjs";
68
- import {
69
- riskIndicator
70
- } from "./chunk-CZMZHA7U.mjs";
89
+ hoverCard
90
+ } from "./chunk-UTCVHVWF.mjs";
71
91
  import {
72
- scrollArea
73
- } from "./chunk-SPQE7K66.mjs";
92
+ imageCrop
93
+ } from "./chunk-GMFZLUU4.mjs";
74
94
  import {
75
- sectionRow
76
- } from "./chunk-CC225WUG.mjs";
95
+ inputGroup
96
+ } from "./chunk-HWEYNK3O.mjs";
77
97
  import {
78
98
  inputWrapper
79
99
  } from "./chunk-VSVGOX3P.mjs";
@@ -84,17 +104,17 @@ import {
84
104
  kbd
85
105
  } from "./chunk-BETLBSSF.mjs";
86
106
  import {
87
- label
88
- } from "./chunk-LMCM4CW2.mjs";
107
+ drawer
108
+ } from "./chunk-7V3NMVQH.mjs";
89
109
  import {
90
- loadingPage
91
- } from "./chunk-ZOTN264E.mjs";
110
+ dialog
111
+ } from "./chunk-OJDCD74N.mjs";
92
112
  import {
93
- pageHeader
94
- } from "./chunk-HAVJ6EQ6.mjs";
113
+ dropdownMenu
114
+ } from "./chunk-3PCDCW7G.mjs";
95
115
  import {
96
- pageLayout
97
- } from "./chunk-OULAICSC.mjs";
116
+ editorBasic
117
+ } from "./chunk-XOL7P7NP.mjs";
98
118
  import {
99
119
  editorSpinner
100
120
  } from "./chunk-TVC4THD6.mjs";
@@ -108,14 +128,17 @@ import {
108
128
  heading
109
129
  } from "./chunk-NWKBPO37.mjs";
110
130
  import {
111
- hoverCard
112
- } from "./chunk-UTCVHVWF.mjs";
131
+ chip
132
+ } from "./chunk-5LVKFTZS.mjs";
113
133
  import {
114
- imageCrop
115
- } from "./chunk-GMFZLUU4.mjs";
134
+ code
135
+ } from "./chunk-VQ2OAHGP.mjs";
116
136
  import {
117
- inputGroup
118
- } from "./chunk-HWEYNK3O.mjs";
137
+ colorHighlightButton
138
+ } from "./chunk-CPERWXKN.mjs";
139
+ import {
140
+ combobox
141
+ } from "./chunk-76J7KB3M.mjs";
119
142
  import {
120
143
  command
121
144
  } from "./chunk-YPHFKGNI.mjs";
@@ -129,17 +152,17 @@ import {
129
152
  dataTable
130
153
  } from "./chunk-GNYTZGE5.mjs";
131
154
  import {
132
- drawer
133
- } from "./chunk-7V3NMVQH.mjs";
155
+ avatarGroup
156
+ } from "./chunk-XCLEKBCJ.mjs";
134
157
  import {
135
- dialog
136
- } from "./chunk-OJDCD74N.mjs";
158
+ avatar
159
+ } from "./chunk-D5FKEY7B.mjs";
137
160
  import {
138
- dropdownMenu
139
- } from "./chunk-3PCDCW7G.mjs";
161
+ blankstate
162
+ } from "./chunk-DICHD74Q.mjs";
140
163
  import {
141
- editorBasic
142
- } from "./chunk-XOL7P7NP.mjs";
164
+ button
165
+ } from "./chunk-OTETLRUE.mjs";
143
166
  import {
144
167
  calendar
145
168
  } from "./chunk-JWF5ABNP.mjs";
@@ -152,21 +175,11 @@ import {
152
175
  import {
153
176
  checkbox
154
177
  } from "./chunk-A4KO7QKC.mjs";
155
- import {
156
- chip
157
- } from "./chunk-5LVKFTZS.mjs";
158
- import {
159
- code
160
- } from "./chunk-VQ2OAHGP.mjs";
161
- import {
162
- colorHighlightButton
163
- } from "./chunk-CPERWXKN.mjs";
164
- import {
165
- combobox
166
- } from "./chunk-76J7KB3M.mjs";
178
+ import "./chunk-XSN6P5JL.mjs";
179
+ import "./chunk-7T563RF7.mjs";
167
180
  import {
168
181
  accordion
169
- } from "./chunk-TLCFFCOP.mjs";
182
+ } from "./chunk-AEWKHJEI.mjs";
170
183
  import {
171
184
  alertDialog
172
185
  } from "./chunk-XGUDXC5P.mjs";
@@ -177,19 +190,6 @@ import {
177
190
  input,
178
191
  passwordInput
179
192
  } from "./chunk-K3EVZATS.mjs";
180
- import {
181
- avatarGroup
182
- } from "./chunk-XCLEKBCJ.mjs";
183
- import {
184
- avatar
185
- } from "./chunk-D5FKEY7B.mjs";
186
- import {
187
- blankstate
188
- } from "./chunk-DICHD74Q.mjs";
189
- import {
190
- button
191
- } from "./chunk-OTETLRUE.mjs";
192
- import "./chunk-7T563RF7.mjs";
193
193
  import "./chunk-6IZPAS4O.mjs";
194
194
  export {
195
195
  accordion,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kopexa/theme",
3
- "version": "17.3.0",
3
+ "version": "17.4.1",
4
4
  "description": "The default theme for Kopexa components",
5
5
  "keywords": [
6
6
  "theme",
@@ -65,7 +65,7 @@
65
65
  "tailwind-merge": "3.3.1",
66
66
  "tailwind-variants": "^3.2.2",
67
67
  "tw-animate-css": "^1.4.0",
68
- "@kopexa/shared-utils": "17.0.7"
68
+ "@kopexa/shared-utils": "17.0.9"
69
69
  },
70
70
  "peerDependencies": {
71
71
  "tailwindcss": ">=4.0.0"