@kopexa/theme 17.22.7 → 17.22.9
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/dist/{chunk-3PCDCW7G.mjs → chunk-BWUVMOSV.mjs} +4 -4
- package/dist/{chunk-7Q2RNHL5.mjs → chunk-RGZCKQNI.mjs} +1 -1
- package/dist/chunk-WQLVUMHF.mjs +71 -0
- package/dist/components/avatar.mjs +2 -2
- package/dist/components/button.mjs +2 -2
- package/dist/components/dropdown-menu.js +4 -4
- package/dist/components/dropdown-menu.mjs +1 -1
- package/dist/components/extension-table.d.mts +71 -0
- package/dist/components/extension-table.d.ts +71 -0
- package/dist/components/extension-table.js +96 -0
- package/dist/components/extension-table.mjs +8 -0
- package/dist/components/index.d.mts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +75 -4
- package/dist/components/index.mjs +84 -78
- package/dist/components/skeleton-avatar.mjs +3 -3
- package/dist/editor.css +152 -132
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +75 -4
- package/dist/index.mjs +85 -79
- package/package.json +2 -2
- package/dist/{chunk-T3C4PJPS.mjs → chunk-EWID76V7.mjs} +0 -0
- package/dist/{chunk-OTETLRUE.mjs → chunk-GNJCCXFJ.mjs} +3 -3
- package/dist/{chunk-D5FKEY7B.mjs → chunk-VPA2TZYQ.mjs} +3 -3
package/dist/index.js
CHANGED
|
@@ -50,6 +50,7 @@ __export(index_exports, {
|
|
|
50
50
|
editableText: () => editableText,
|
|
51
51
|
editorBasic: () => editorBasic,
|
|
52
52
|
editorSpinner: () => editorSpinner,
|
|
53
|
+
extensionTableHandleMenuContent: () => extensionTableHandleMenuContent,
|
|
53
54
|
filter: () => filter,
|
|
54
55
|
frameworkRow: () => frameworkRow,
|
|
55
56
|
heading: () => heading,
|
|
@@ -93,6 +94,7 @@ __export(index_exports, {
|
|
|
93
94
|
switchVariants: () => switchVariants,
|
|
94
95
|
tabNav: () => tabNav,
|
|
95
96
|
table: () => table,
|
|
97
|
+
tableCellHandleMenu: () => tableCellHandleMenu,
|
|
96
98
|
tabs: () => tabs,
|
|
97
99
|
textarea: () => textarea,
|
|
98
100
|
toc: () => toc,
|
|
@@ -2363,18 +2365,18 @@ var import_tailwind_variants27 = require("tailwind-variants");
|
|
|
2363
2365
|
var dropdownMenu = (0, import_tailwind_variants27.tv)({
|
|
2364
2366
|
slots: {
|
|
2365
2367
|
root: "",
|
|
2366
|
-
content: "min-w-
|
|
2368
|
+
content: "min-w-32 bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 max-h-(--radix-dropdown-menu-content-available-height) origin-(--radix-dropdown-menu-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border p-1 shadow-md",
|
|
2367
2369
|
item: "focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:*:[svg]:!text-destructive [&_svg:not([class*='text-'])]:text-muted-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
|
|
2368
2370
|
checkboxItem: "focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
|
|
2369
2371
|
iconWrapper: "pointer-events-none absolute left-2 flex size-3.5 items-center justify-center",
|
|
2370
2372
|
icon: "size-4",
|
|
2371
2373
|
radioItem: "focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
|
|
2372
2374
|
radioItemIcon: "size-4 fill-current",
|
|
2373
|
-
label: "px-2 py-1.5 text-sm font-medium data-
|
|
2375
|
+
label: "px-2 py-1.5 text-sm font-medium data-inset:pl-8",
|
|
2374
2376
|
separator: "bg-border -mx-1 my-1 h-px",
|
|
2375
2377
|
shortcut: "text-muted-foreground ml-auto text-xs tracking-widest",
|
|
2376
|
-
subTrigger: "focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[inset]:pl-8",
|
|
2377
|
-
subTriggerIcon: "size-4 ml-auto",
|
|
2378
|
+
subTrigger: "focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground [&_svg:not([class*='text-'])]:text-muted-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
|
|
2379
|
+
subTriggerIcon: "!text-muted-foreground !size-4 ml-auto",
|
|
2378
2380
|
subContent: "bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 min-w-[8rem] origin-(--radix-dropdown-menu-content-transform-origin) overflow-hidden rounded-md border p-1 shadow-lg"
|
|
2379
2381
|
}
|
|
2380
2382
|
});
|
|
@@ -5070,6 +5072,73 @@ var variableNode = (0, import_tailwind_variants77.tv)({
|
|
|
5070
5072
|
resolved: false
|
|
5071
5073
|
}
|
|
5072
5074
|
});
|
|
5075
|
+
|
|
5076
|
+
// src/components/extension-table.ts
|
|
5077
|
+
var import_tailwind_variants78 = require("tailwind-variants");
|
|
5078
|
+
var extensionTableHandleMenuContent = (0, import_tailwind_variants78.tv)({
|
|
5079
|
+
slots: {
|
|
5080
|
+
root: [
|
|
5081
|
+
"flex items-center justify-center bg-muted cursor-grab rounded-md",
|
|
5082
|
+
// orientation=column
|
|
5083
|
+
"data-[orientation=column]:w-(--table-handle-ref-width) data-[orientation=column]:h-3",
|
|
5084
|
+
// orientation=row
|
|
5085
|
+
"data-[orientation=row]:h-(--table-handle-ref-height) data-[orientation=row]:w-3",
|
|
5086
|
+
// dragging state
|
|
5087
|
+
"data-[dragging=true]:cursor-grabbing data-[dragging=true]:bg-primary data-[dragging=true]:text-primary-foreground",
|
|
5088
|
+
// menu open
|
|
5089
|
+
"data-[open=true]:bg-primary data-[open=true]:text-primary-foreground"
|
|
5090
|
+
],
|
|
5091
|
+
icon: "size-4 shrink-0 data-[orientation=column]:rotate-90"
|
|
5092
|
+
}
|
|
5093
|
+
});
|
|
5094
|
+
var tableCellHandleMenu = (0, import_tailwind_variants78.tv)({
|
|
5095
|
+
slots: {
|
|
5096
|
+
trigger: [
|
|
5097
|
+
"group",
|
|
5098
|
+
// positioning
|
|
5099
|
+
"absolute top-1/2 -right-2 -translate-y-1/2",
|
|
5100
|
+
// sizing & appearance
|
|
5101
|
+
"size-4 bg-transparent rounded-full cursor-pointer",
|
|
5102
|
+
"flex items-center justify-center",
|
|
5103
|
+
"pointer-events-auto",
|
|
5104
|
+
// ::before pseudo-element (the expanding dot)
|
|
5105
|
+
"before:content-[''] before:absolute before:top-1/2 before:-translate-y-1/2",
|
|
5106
|
+
"before:right-0.75 before:size-2",
|
|
5107
|
+
"before:bg-primary before:rounded-full",
|
|
5108
|
+
"before:transition-[width,height,right,background-color] before:duration-[50ms]",
|
|
5109
|
+
// hover (hover-capable devices): dot expands
|
|
5110
|
+
"[@media(hover:hover)]:hover:before:size-4 [@media(hover:hover)]:hover:before:right-0",
|
|
5111
|
+
// focus-visible: dot expands + outline
|
|
5112
|
+
"focus-visible:before:size-4 focus-visible:before:right-0",
|
|
5113
|
+
"focus-visible:outline-2 focus-visible:outline-primary focus-visible:outline-offset-2",
|
|
5114
|
+
// open state: dot expands
|
|
5115
|
+
"data-[open=true]:before:size-4 data-[open=true]:before:right-0",
|
|
5116
|
+
// touch devices: always expanded
|
|
5117
|
+
"[@media(hover:none)]:before:size-4 [@media(hover:none)]:before:right-0",
|
|
5118
|
+
// disabled
|
|
5119
|
+
"disabled:cursor-not-allowed disabled:opacity-50",
|
|
5120
|
+
"disabled:before:bg-default-300",
|
|
5121
|
+
// reduced motion
|
|
5122
|
+
"motion-reduce:before:transition-none"
|
|
5123
|
+
],
|
|
5124
|
+
icon: [
|
|
5125
|
+
"relative z-1 size-4 text-white",
|
|
5126
|
+
"opacity-0 scale-[0.9]",
|
|
5127
|
+
"pointer-events-none shrink-0",
|
|
5128
|
+
"transition-[opacity,transform] duration-50",
|
|
5129
|
+
// hover (hover-capable devices)
|
|
5130
|
+
"[@media(hover:hover)]:group-hover:opacity-100 [@media(hover:hover)]:group-hover:scale-100",
|
|
5131
|
+
// focus-visible
|
|
5132
|
+
"group-focus-visible:opacity-100 group-focus-visible:scale-100",
|
|
5133
|
+
// open state
|
|
5134
|
+
"group-data-[open=true]:opacity-100 group-data-[open=true]:scale-100",
|
|
5135
|
+
// touch devices: always visible
|
|
5136
|
+
"[@media(hover:none)]:opacity-100 [@media(hover:none)]:scale-100",
|
|
5137
|
+
// reduced motion
|
|
5138
|
+
"motion-reduce:transition-none"
|
|
5139
|
+
]
|
|
5140
|
+
}
|
|
5141
|
+
});
|
|
5073
5142
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5074
5143
|
0 && (module.exports = {
|
|
5075
5144
|
accordion,
|
|
@@ -5102,6 +5171,7 @@ var variableNode = (0, import_tailwind_variants77.tv)({
|
|
|
5102
5171
|
editableText,
|
|
5103
5172
|
editorBasic,
|
|
5104
5173
|
editorSpinner,
|
|
5174
|
+
extensionTableHandleMenuContent,
|
|
5105
5175
|
filter,
|
|
5106
5176
|
frameworkRow,
|
|
5107
5177
|
heading,
|
|
@@ -5145,6 +5215,7 @@ var variableNode = (0, import_tailwind_variants77.tv)({
|
|
|
5145
5215
|
switchVariants,
|
|
5146
5216
|
tabNav,
|
|
5147
5217
|
table,
|
|
5218
|
+
tableCellHandleMenu,
|
|
5148
5219
|
tabs,
|
|
5149
5220
|
textarea,
|
|
5150
5221
|
toc,
|
package/dist/index.mjs
CHANGED
|
@@ -1,14 +1,4 @@
|
|
|
1
|
-
import "./chunk-
|
|
2
|
-
import "./chunk-T3C4PJPS.mjs";
|
|
3
|
-
import {
|
|
4
|
-
tabs
|
|
5
|
-
} from "./chunk-I6M4S2KZ.mjs";
|
|
6
|
-
import {
|
|
7
|
-
textarea
|
|
8
|
-
} from "./chunk-ARLLAC5V.mjs";
|
|
9
|
-
import {
|
|
10
|
-
toc
|
|
11
|
-
} from "./chunk-ODC3GJTR.mjs";
|
|
1
|
+
import "./chunk-EWID76V7.mjs";
|
|
12
2
|
import {
|
|
13
3
|
toggleRow
|
|
14
4
|
} from "./chunk-F7MJHRZX.mjs";
|
|
@@ -21,15 +11,6 @@ import {
|
|
|
21
11
|
import {
|
|
22
12
|
variableNode
|
|
23
13
|
} from "./chunk-EKOZ2ZVU.mjs";
|
|
24
|
-
import {
|
|
25
|
-
slashDropdownMenu
|
|
26
|
-
} from "./chunk-U4BRPFG2.mjs";
|
|
27
|
-
import {
|
|
28
|
-
spinner
|
|
29
|
-
} from "./chunk-4UDOCFU5.mjs";
|
|
30
|
-
import {
|
|
31
|
-
splitPageLayout
|
|
32
|
-
} from "./chunk-B5JVXVSG.mjs";
|
|
33
14
|
import {
|
|
34
15
|
standardChip
|
|
35
16
|
} from "./chunk-XQZL7LCP.mjs";
|
|
@@ -46,14 +27,14 @@ import {
|
|
|
46
27
|
table
|
|
47
28
|
} from "./chunk-YC2FQDBV.mjs";
|
|
48
29
|
import {
|
|
49
|
-
|
|
50
|
-
} from "./chunk-
|
|
30
|
+
tabs
|
|
31
|
+
} from "./chunk-I6M4S2KZ.mjs";
|
|
51
32
|
import {
|
|
52
|
-
|
|
53
|
-
} from "./chunk-
|
|
33
|
+
textarea
|
|
34
|
+
} from "./chunk-ARLLAC5V.mjs";
|
|
54
35
|
import {
|
|
55
|
-
|
|
56
|
-
} from "./chunk-
|
|
36
|
+
toc
|
|
37
|
+
} from "./chunk-ODC3GJTR.mjs";
|
|
57
38
|
import {
|
|
58
39
|
select
|
|
59
40
|
} from "./chunk-KPVLNOO5.mjs";
|
|
@@ -67,19 +48,19 @@ import {
|
|
|
67
48
|
} from "./chunk-2Z4QAY6O.mjs";
|
|
68
49
|
import {
|
|
69
50
|
skeletonAvatar
|
|
70
|
-
} from "./chunk-
|
|
51
|
+
} from "./chunk-RGZCKQNI.mjs";
|
|
71
52
|
import {
|
|
72
53
|
skeleton
|
|
73
54
|
} from "./chunk-VNQEJU4P.mjs";
|
|
74
55
|
import {
|
|
75
|
-
|
|
76
|
-
} from "./chunk-
|
|
56
|
+
slashDropdownMenu
|
|
57
|
+
} from "./chunk-U4BRPFG2.mjs";
|
|
77
58
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
59
|
+
spinner
|
|
60
|
+
} from "./chunk-4UDOCFU5.mjs";
|
|
80
61
|
import {
|
|
81
|
-
|
|
82
|
-
} from "./chunk-
|
|
62
|
+
splitPageLayout
|
|
63
|
+
} from "./chunk-B5JVXVSG.mjs";
|
|
83
64
|
import {
|
|
84
65
|
promptInput
|
|
85
66
|
} from "./chunk-UCVBVFHQ.mjs";
|
|
@@ -96,11 +77,14 @@ import {
|
|
|
96
77
|
riskIndicator
|
|
97
78
|
} from "./chunk-CZMZHA7U.mjs";
|
|
98
79
|
import {
|
|
99
|
-
|
|
100
|
-
} from "./chunk-
|
|
80
|
+
riskRating
|
|
81
|
+
} from "./chunk-CNYKIUVC.mjs";
|
|
101
82
|
import {
|
|
102
|
-
|
|
103
|
-
} from "./chunk-
|
|
83
|
+
scrollArea
|
|
84
|
+
} from "./chunk-SPQE7K66.mjs";
|
|
85
|
+
import {
|
|
86
|
+
sectionRow
|
|
87
|
+
} from "./chunk-CC225WUG.mjs";
|
|
104
88
|
import {
|
|
105
89
|
kbd
|
|
106
90
|
} from "./chunk-BETLBSSF.mjs";
|
|
@@ -117,14 +101,14 @@ import {
|
|
|
117
101
|
pageHeader
|
|
118
102
|
} from "./chunk-HAVJ6EQ6.mjs";
|
|
119
103
|
import {
|
|
120
|
-
|
|
121
|
-
} from "./chunk-
|
|
104
|
+
pageLayout
|
|
105
|
+
} from "./chunk-OULAICSC.mjs";
|
|
122
106
|
import {
|
|
123
|
-
|
|
124
|
-
} from "./chunk-
|
|
107
|
+
popover
|
|
108
|
+
} from "./chunk-TQVRNEIH.mjs";
|
|
125
109
|
import {
|
|
126
|
-
|
|
127
|
-
} from "./chunk-
|
|
110
|
+
previewCard
|
|
111
|
+
} from "./chunk-GWRIERN6.mjs";
|
|
128
112
|
import {
|
|
129
113
|
imageCrop
|
|
130
114
|
} from "./chunk-GMFZLUU4.mjs";
|
|
@@ -138,23 +122,21 @@ import {
|
|
|
138
122
|
inputGroup
|
|
139
123
|
} from "./chunk-HWEYNK3O.mjs";
|
|
140
124
|
import {
|
|
141
|
-
|
|
142
|
-
} from "./chunk-
|
|
143
|
-
import {
|
|
144
|
-
dialog
|
|
145
|
-
} from "./chunk-OJDCD74N.mjs";
|
|
146
|
-
import {
|
|
147
|
-
dropdownMenu
|
|
148
|
-
} from "./chunk-3PCDCW7G.mjs";
|
|
125
|
+
inputWrapper
|
|
126
|
+
} from "./chunk-VSVGOX3P.mjs";
|
|
149
127
|
import {
|
|
150
|
-
|
|
151
|
-
} from "./chunk-
|
|
128
|
+
integrationCard
|
|
129
|
+
} from "./chunk-QOW6FLZ6.mjs";
|
|
152
130
|
import {
|
|
153
131
|
editorBasic
|
|
154
132
|
} from "./chunk-LPNA4ATD.mjs";
|
|
155
133
|
import {
|
|
156
134
|
editorSpinner
|
|
157
135
|
} from "./chunk-TVC4THD6.mjs";
|
|
136
|
+
import {
|
|
137
|
+
extensionTableHandleMenuContent,
|
|
138
|
+
tableCellHandleMenu
|
|
139
|
+
} from "./chunk-WQLVUMHF.mjs";
|
|
158
140
|
import {
|
|
159
141
|
avatarUpload
|
|
160
142
|
} from "./chunk-QGL2OK4B.mjs";
|
|
@@ -162,17 +144,14 @@ import {
|
|
|
162
144
|
filter
|
|
163
145
|
} from "./chunk-GT463S76.mjs";
|
|
164
146
|
import {
|
|
165
|
-
|
|
166
|
-
} from "./chunk-
|
|
167
|
-
import {
|
|
168
|
-
combobox
|
|
169
|
-
} from "./chunk-3T7EOMXR.mjs";
|
|
147
|
+
frameworkRow
|
|
148
|
+
} from "./chunk-TPFAZH22.mjs";
|
|
170
149
|
import {
|
|
171
|
-
|
|
172
|
-
} from "./chunk-
|
|
150
|
+
heading
|
|
151
|
+
} from "./chunk-NWKBPO37.mjs";
|
|
173
152
|
import {
|
|
174
|
-
|
|
175
|
-
} from "./chunk-
|
|
153
|
+
hoverCard
|
|
154
|
+
} from "./chunk-UTCVHVWF.mjs";
|
|
176
155
|
import {
|
|
177
156
|
controlExtension
|
|
178
157
|
} from "./chunk-M4TXKRUU.mjs";
|
|
@@ -186,17 +165,17 @@ import {
|
|
|
186
165
|
dataTable
|
|
187
166
|
} from "./chunk-GNYTZGE5.mjs";
|
|
188
167
|
import {
|
|
189
|
-
|
|
190
|
-
} from "./chunk-
|
|
168
|
+
drawer
|
|
169
|
+
} from "./chunk-7V3NMVQH.mjs";
|
|
191
170
|
import {
|
|
192
|
-
|
|
193
|
-
} from "./chunk-
|
|
171
|
+
dialog
|
|
172
|
+
} from "./chunk-OJDCD74N.mjs";
|
|
194
173
|
import {
|
|
195
|
-
|
|
196
|
-
} from "./chunk-
|
|
174
|
+
dropdownMenu
|
|
175
|
+
} from "./chunk-BWUVMOSV.mjs";
|
|
197
176
|
import {
|
|
198
|
-
|
|
199
|
-
} from "./chunk-
|
|
177
|
+
editableText
|
|
178
|
+
} from "./chunk-GZJAA5RZ.mjs";
|
|
200
179
|
import {
|
|
201
180
|
card
|
|
202
181
|
} from "./chunk-5YHTCPJL.mjs";
|
|
@@ -210,14 +189,17 @@ import {
|
|
|
210
189
|
code
|
|
211
190
|
} from "./chunk-VQ2OAHGP.mjs";
|
|
212
191
|
import {
|
|
213
|
-
|
|
214
|
-
} from "./chunk-
|
|
192
|
+
colorHighlightButton
|
|
193
|
+
} from "./chunk-CPERWXKN.mjs";
|
|
215
194
|
import {
|
|
216
|
-
|
|
217
|
-
} from "./chunk-
|
|
195
|
+
combobox
|
|
196
|
+
} from "./chunk-3T7EOMXR.mjs";
|
|
218
197
|
import {
|
|
219
|
-
|
|
220
|
-
} from "./chunk-
|
|
198
|
+
command
|
|
199
|
+
} from "./chunk-YPHFKGNI.mjs";
|
|
200
|
+
import {
|
|
201
|
+
complianceBadge
|
|
202
|
+
} from "./chunk-RZ45NVOH.mjs";
|
|
221
203
|
import {
|
|
222
204
|
autocomplete
|
|
223
205
|
} from "./chunk-OHZBQRA4.mjs";
|
|
@@ -230,12 +212,34 @@ import {
|
|
|
230
212
|
} from "./chunk-XCLEKBCJ.mjs";
|
|
231
213
|
import {
|
|
232
214
|
avatar
|
|
233
|
-
} from "./chunk-
|
|
234
|
-
import "./chunk-7T563RF7.mjs";
|
|
235
|
-
import "./chunk-6IZPAS4O.mjs";
|
|
215
|
+
} from "./chunk-VPA2TZYQ.mjs";
|
|
236
216
|
import {
|
|
237
217
|
blankstate
|
|
238
218
|
} from "./chunk-DICHD74Q.mjs";
|
|
219
|
+
import {
|
|
220
|
+
breadcrumb
|
|
221
|
+
} from "./chunk-W6TZSSAU.mjs";
|
|
222
|
+
import {
|
|
223
|
+
button
|
|
224
|
+
} from "./chunk-GNJCCXFJ.mjs";
|
|
225
|
+
import {
|
|
226
|
+
calendar
|
|
227
|
+
} from "./chunk-JWF5ABNP.mjs";
|
|
228
|
+
import {
|
|
229
|
+
callout
|
|
230
|
+
} from "./chunk-A3F4CV54.mjs";
|
|
231
|
+
import "./chunk-6IZPAS4O.mjs";
|
|
232
|
+
import "./chunk-XSN6P5JL.mjs";
|
|
233
|
+
import "./chunk-7T563RF7.mjs";
|
|
234
|
+
import {
|
|
235
|
+
accordion
|
|
236
|
+
} from "./chunk-AEWKHJEI.mjs";
|
|
237
|
+
import {
|
|
238
|
+
alertDialog
|
|
239
|
+
} from "./chunk-XGUDXC5P.mjs";
|
|
240
|
+
import {
|
|
241
|
+
auditInfo
|
|
242
|
+
} from "./chunk-CPAF7VNM.mjs";
|
|
239
243
|
export {
|
|
240
244
|
accordion,
|
|
241
245
|
alertDialog,
|
|
@@ -267,6 +271,7 @@ export {
|
|
|
267
271
|
editableText,
|
|
268
272
|
editorBasic,
|
|
269
273
|
editorSpinner,
|
|
274
|
+
extensionTableHandleMenuContent,
|
|
270
275
|
filter,
|
|
271
276
|
frameworkRow,
|
|
272
277
|
heading,
|
|
@@ -310,6 +315,7 @@ export {
|
|
|
310
315
|
switchVariants,
|
|
311
316
|
tabNav,
|
|
312
317
|
table,
|
|
318
|
+
tableCellHandleMenu,
|
|
313
319
|
tabs,
|
|
314
320
|
textarea,
|
|
315
321
|
toc,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/theme",
|
|
3
|
-
"version": "17.22.
|
|
3
|
+
"version": "17.22.9",
|
|
4
4
|
"description": "The default theme for Kopexa components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"theme",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"tailwind-merge": "3.4.0",
|
|
67
67
|
"tailwind-variants": "^3.2.2",
|
|
68
68
|
"tw-animate-css": "^1.4.0",
|
|
69
|
-
"@kopexa/shared-utils": "17.0.
|
|
69
|
+
"@kopexa/shared-utils": "17.0.48"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"tailwindcss": ">=4.0.0"
|
|
File without changes
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
colorVariants
|
|
3
|
-
} from "./chunk-7T563RF7.mjs";
|
|
4
1
|
import {
|
|
5
2
|
focusVisibleClasses,
|
|
6
3
|
translateCenterClasses
|
|
7
4
|
} from "./chunk-6IZPAS4O.mjs";
|
|
5
|
+
import {
|
|
6
|
+
colorVariants
|
|
7
|
+
} from "./chunk-7T563RF7.mjs";
|
|
8
8
|
|
|
9
9
|
// src/components/avatar.ts
|
|
10
10
|
import { tv } from "tailwind-variants";
|