@cck-ui/core 0.23.0 → 0.25.0
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/cjs/components/divider/divider.cjs +434 -0
- package/cjs/components/divider/divider.cjs.map +1 -0
- package/cjs/components/divider/divider.module.cjs +10 -0
- package/cjs/components/divider/divider.module.cjs.map +1 -0
- package/cjs/components/divider/divider.utils.cjs +13 -0
- package/cjs/components/divider/divider.utils.cjs.map +1 -0
- package/cjs/components/divider/index.cjs +14 -0
- package/cjs/components/divider/index.cjs.map +1 -0
- package/cjs/components/portal/index.cjs +12 -0
- package/cjs/components/portal/index.cjs.map +1 -0
- package/cjs/components/portal/portal.cjs +116 -0
- package/cjs/components/portal/portal.cjs.map +1 -0
- package/cjs/index.cjs +69 -63
- package/cjs/index.cjs.map +1 -1
- package/esm/components/divider/divider.mjs +434 -0
- package/esm/components/divider/divider.mjs.map +1 -0
- package/esm/components/divider/divider.module.mjs +10 -0
- package/esm/components/divider/divider.module.mjs.map +1 -0
- package/esm/components/divider/divider.utils.mjs +14 -0
- package/esm/components/divider/divider.utils.mjs.map +1 -0
- package/esm/components/divider/index.mjs +11 -0
- package/esm/components/divider/index.mjs.map +1 -0
- package/esm/components/portal/index.mjs +9 -0
- package/esm/components/portal/index.mjs.map +1 -0
- package/esm/components/portal/portal.mjs +116 -0
- package/esm/components/portal/portal.mjs.map +1 -0
- package/esm/index.mjs +5 -1
- package/esm/index.mjs.map +1 -1
- package/lib/components/divider/divider.types.d.ts +28 -0
- package/lib/components/divider/divider.utils.d.ts +7 -0
- package/lib/components/divider/index.d.ts +6 -0
- package/lib/components/index.d.ts +2 -0
- package/lib/components/portal/index.d.ts +5 -0
- package/lib/components/portal/portal.types.d.ts +21 -0
- package/package.json +1 -1
- package/styles/divider.css +62 -0
- package/styles/divider.layer.css +63 -0
- package/styles.css +63 -0
- package/styles.layer.css +63 -0
|
@@ -0,0 +1,434 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_export_helper = require("../../_virtual/_/plugin-vue/export-helper.cjs");
|
|
3
|
+
const require_use_component_props = require("../../core/config-provider/use-component-props/use-component-props.cjs");
|
|
4
|
+
const require_index = require("../../core/box/index.cjs");
|
|
5
|
+
const require_use_styles = require("../../core/styles-api/use-styles/use-styles.cjs");
|
|
6
|
+
const require_divider_module = require("./divider.module.cjs");
|
|
7
|
+
const require_divider_utils = require("./divider.utils.cjs");
|
|
8
|
+
let vue = require("vue");
|
|
9
|
+
//#region packages/@cck-ui/core/src/components/divider/divider.vue
|
|
10
|
+
const _sfc_main = /*@__PURE__*/ (0, vue.defineComponent)({
|
|
11
|
+
name: "CDivider",
|
|
12
|
+
__name: "divider",
|
|
13
|
+
props: {
|
|
14
|
+
color: {
|
|
15
|
+
type: null,
|
|
16
|
+
required: false
|
|
17
|
+
},
|
|
18
|
+
size: {
|
|
19
|
+
type: [
|
|
20
|
+
String,
|
|
21
|
+
Number,
|
|
22
|
+
Object
|
|
23
|
+
],
|
|
24
|
+
required: false
|
|
25
|
+
},
|
|
26
|
+
labelPosition: {
|
|
27
|
+
type: String,
|
|
28
|
+
required: false
|
|
29
|
+
},
|
|
30
|
+
orientation: {
|
|
31
|
+
type: String,
|
|
32
|
+
required: false
|
|
33
|
+
},
|
|
34
|
+
className: {
|
|
35
|
+
type: String,
|
|
36
|
+
required: false
|
|
37
|
+
},
|
|
38
|
+
style: {
|
|
39
|
+
type: [
|
|
40
|
+
Object,
|
|
41
|
+
Function,
|
|
42
|
+
Array
|
|
43
|
+
],
|
|
44
|
+
required: false,
|
|
45
|
+
skipCheck: true
|
|
46
|
+
},
|
|
47
|
+
__vars: {
|
|
48
|
+
type: null,
|
|
49
|
+
required: false
|
|
50
|
+
},
|
|
51
|
+
__size: {
|
|
52
|
+
type: String,
|
|
53
|
+
required: false
|
|
54
|
+
},
|
|
55
|
+
hiddenFrom: {
|
|
56
|
+
type: null,
|
|
57
|
+
required: false
|
|
58
|
+
},
|
|
59
|
+
visibleFrom: {
|
|
60
|
+
type: null,
|
|
61
|
+
required: false
|
|
62
|
+
},
|
|
63
|
+
lightHidden: {
|
|
64
|
+
type: Boolean,
|
|
65
|
+
required: false
|
|
66
|
+
},
|
|
67
|
+
darkHidden: {
|
|
68
|
+
type: Boolean,
|
|
69
|
+
required: false
|
|
70
|
+
},
|
|
71
|
+
mod: {
|
|
72
|
+
type: [
|
|
73
|
+
Object,
|
|
74
|
+
String,
|
|
75
|
+
Array
|
|
76
|
+
],
|
|
77
|
+
required: false
|
|
78
|
+
},
|
|
79
|
+
m: {
|
|
80
|
+
type: null,
|
|
81
|
+
required: false
|
|
82
|
+
},
|
|
83
|
+
my: {
|
|
84
|
+
type: null,
|
|
85
|
+
required: false
|
|
86
|
+
},
|
|
87
|
+
mx: {
|
|
88
|
+
type: null,
|
|
89
|
+
required: false
|
|
90
|
+
},
|
|
91
|
+
mt: {
|
|
92
|
+
type: null,
|
|
93
|
+
required: false
|
|
94
|
+
},
|
|
95
|
+
mb: {
|
|
96
|
+
type: null,
|
|
97
|
+
required: false
|
|
98
|
+
},
|
|
99
|
+
ms: {
|
|
100
|
+
type: null,
|
|
101
|
+
required: false
|
|
102
|
+
},
|
|
103
|
+
me: {
|
|
104
|
+
type: null,
|
|
105
|
+
required: false
|
|
106
|
+
},
|
|
107
|
+
mis: {
|
|
108
|
+
type: null,
|
|
109
|
+
required: false
|
|
110
|
+
},
|
|
111
|
+
mie: {
|
|
112
|
+
type: null,
|
|
113
|
+
required: false
|
|
114
|
+
},
|
|
115
|
+
ml: {
|
|
116
|
+
type: null,
|
|
117
|
+
required: false
|
|
118
|
+
},
|
|
119
|
+
mr: {
|
|
120
|
+
type: null,
|
|
121
|
+
required: false
|
|
122
|
+
},
|
|
123
|
+
p: {
|
|
124
|
+
type: null,
|
|
125
|
+
required: false
|
|
126
|
+
},
|
|
127
|
+
py: {
|
|
128
|
+
type: null,
|
|
129
|
+
required: false
|
|
130
|
+
},
|
|
131
|
+
px: {
|
|
132
|
+
type: null,
|
|
133
|
+
required: false
|
|
134
|
+
},
|
|
135
|
+
pt: {
|
|
136
|
+
type: null,
|
|
137
|
+
required: false
|
|
138
|
+
},
|
|
139
|
+
pb: {
|
|
140
|
+
type: null,
|
|
141
|
+
required: false
|
|
142
|
+
},
|
|
143
|
+
ps: {
|
|
144
|
+
type: null,
|
|
145
|
+
required: false
|
|
146
|
+
},
|
|
147
|
+
pe: {
|
|
148
|
+
type: null,
|
|
149
|
+
required: false
|
|
150
|
+
},
|
|
151
|
+
pis: {
|
|
152
|
+
type: null,
|
|
153
|
+
required: false
|
|
154
|
+
},
|
|
155
|
+
pie: {
|
|
156
|
+
type: null,
|
|
157
|
+
required: false
|
|
158
|
+
},
|
|
159
|
+
pl: {
|
|
160
|
+
type: null,
|
|
161
|
+
required: false
|
|
162
|
+
},
|
|
163
|
+
pr: {
|
|
164
|
+
type: null,
|
|
165
|
+
required: false
|
|
166
|
+
},
|
|
167
|
+
bd: {
|
|
168
|
+
type: null,
|
|
169
|
+
required: false
|
|
170
|
+
},
|
|
171
|
+
bdrs: {
|
|
172
|
+
type: null,
|
|
173
|
+
required: false
|
|
174
|
+
},
|
|
175
|
+
bg: {
|
|
176
|
+
type: null,
|
|
177
|
+
required: false
|
|
178
|
+
},
|
|
179
|
+
c: {
|
|
180
|
+
type: null,
|
|
181
|
+
required: false
|
|
182
|
+
},
|
|
183
|
+
opacity: {
|
|
184
|
+
type: [
|
|
185
|
+
String,
|
|
186
|
+
Object,
|
|
187
|
+
Number
|
|
188
|
+
],
|
|
189
|
+
required: false
|
|
190
|
+
},
|
|
191
|
+
ff: {
|
|
192
|
+
type: [String, Object],
|
|
193
|
+
required: false
|
|
194
|
+
},
|
|
195
|
+
fz: {
|
|
196
|
+
type: null,
|
|
197
|
+
required: false
|
|
198
|
+
},
|
|
199
|
+
fw: {
|
|
200
|
+
type: null,
|
|
201
|
+
required: false
|
|
202
|
+
},
|
|
203
|
+
lts: {
|
|
204
|
+
type: null,
|
|
205
|
+
required: false
|
|
206
|
+
},
|
|
207
|
+
ta: {
|
|
208
|
+
type: [String, Object],
|
|
209
|
+
required: false
|
|
210
|
+
},
|
|
211
|
+
lh: {
|
|
212
|
+
type: null,
|
|
213
|
+
required: false
|
|
214
|
+
},
|
|
215
|
+
fs: {
|
|
216
|
+
type: null,
|
|
217
|
+
required: false
|
|
218
|
+
},
|
|
219
|
+
tt: {
|
|
220
|
+
type: [String, Object],
|
|
221
|
+
required: false
|
|
222
|
+
},
|
|
223
|
+
td: {
|
|
224
|
+
type: null,
|
|
225
|
+
required: false
|
|
226
|
+
},
|
|
227
|
+
w: {
|
|
228
|
+
type: null,
|
|
229
|
+
required: false
|
|
230
|
+
},
|
|
231
|
+
miw: {
|
|
232
|
+
type: null,
|
|
233
|
+
required: false
|
|
234
|
+
},
|
|
235
|
+
maw: {
|
|
236
|
+
type: null,
|
|
237
|
+
required: false
|
|
238
|
+
},
|
|
239
|
+
h: {
|
|
240
|
+
type: null,
|
|
241
|
+
required: false
|
|
242
|
+
},
|
|
243
|
+
mih: {
|
|
244
|
+
type: null,
|
|
245
|
+
required: false
|
|
246
|
+
},
|
|
247
|
+
mah: {
|
|
248
|
+
type: null,
|
|
249
|
+
required: false
|
|
250
|
+
},
|
|
251
|
+
bgsz: {
|
|
252
|
+
type: null,
|
|
253
|
+
required: false
|
|
254
|
+
},
|
|
255
|
+
bgp: {
|
|
256
|
+
type: null,
|
|
257
|
+
required: false
|
|
258
|
+
},
|
|
259
|
+
bgr: {
|
|
260
|
+
type: null,
|
|
261
|
+
required: false
|
|
262
|
+
},
|
|
263
|
+
bga: {
|
|
264
|
+
type: null,
|
|
265
|
+
required: false
|
|
266
|
+
},
|
|
267
|
+
pos: {
|
|
268
|
+
type: [String, Object],
|
|
269
|
+
required: false
|
|
270
|
+
},
|
|
271
|
+
top: {
|
|
272
|
+
type: null,
|
|
273
|
+
required: false
|
|
274
|
+
},
|
|
275
|
+
left: {
|
|
276
|
+
type: null,
|
|
277
|
+
required: false
|
|
278
|
+
},
|
|
279
|
+
bottom: {
|
|
280
|
+
type: null,
|
|
281
|
+
required: false
|
|
282
|
+
},
|
|
283
|
+
right: {
|
|
284
|
+
type: null,
|
|
285
|
+
required: false
|
|
286
|
+
},
|
|
287
|
+
inset: {
|
|
288
|
+
type: null,
|
|
289
|
+
required: false
|
|
290
|
+
},
|
|
291
|
+
display: {
|
|
292
|
+
type: null,
|
|
293
|
+
required: false
|
|
294
|
+
},
|
|
295
|
+
flex: {
|
|
296
|
+
type: null,
|
|
297
|
+
required: false
|
|
298
|
+
},
|
|
299
|
+
unstyled: {
|
|
300
|
+
type: Boolean,
|
|
301
|
+
required: false
|
|
302
|
+
},
|
|
303
|
+
variant: {
|
|
304
|
+
type: null,
|
|
305
|
+
required: false
|
|
306
|
+
},
|
|
307
|
+
classNames: {
|
|
308
|
+
type: null,
|
|
309
|
+
required: false
|
|
310
|
+
},
|
|
311
|
+
styles: {
|
|
312
|
+
type: null,
|
|
313
|
+
required: false
|
|
314
|
+
},
|
|
315
|
+
vars: {
|
|
316
|
+
type: Function,
|
|
317
|
+
required: false
|
|
318
|
+
},
|
|
319
|
+
attributes: {
|
|
320
|
+
type: null,
|
|
321
|
+
required: false
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
setup(__props, { expose: __expose }) {
|
|
325
|
+
const _root = (0, vue.ref)(null);
|
|
326
|
+
const _label = (0, vue.ref)(null);
|
|
327
|
+
const attrs = (0, vue.useAttrs)();
|
|
328
|
+
const slots = (0, vue.useSlots)();
|
|
329
|
+
const rawProps = __props;
|
|
330
|
+
const defaultProps = { orientation: "horizontal" };
|
|
331
|
+
const props = require_use_component_props.useComponentProps({
|
|
332
|
+
component: "CDivider",
|
|
333
|
+
defaultProps,
|
|
334
|
+
props: rawProps
|
|
335
|
+
});
|
|
336
|
+
const knownProps = [
|
|
337
|
+
"classNames",
|
|
338
|
+
"className",
|
|
339
|
+
"style",
|
|
340
|
+
"styles",
|
|
341
|
+
"unstyled",
|
|
342
|
+
"vars",
|
|
343
|
+
"color",
|
|
344
|
+
"orientation",
|
|
345
|
+
"labelPosition",
|
|
346
|
+
"mod",
|
|
347
|
+
"attributes"
|
|
348
|
+
];
|
|
349
|
+
const rootModList = (0, vue.computed)(() => [{ orientation: props.value.orientation }, { withLabel: !!slots.label }]);
|
|
350
|
+
const labelModList = (0, vue.computed)(() => [{ position: props.value.labelPosition }]);
|
|
351
|
+
const styleProps = (0, vue.computed)(() => ({
|
|
352
|
+
...props.value,
|
|
353
|
+
...attrs,
|
|
354
|
+
style: attrs.style ?? props.value.style
|
|
355
|
+
}));
|
|
356
|
+
const getStyles = require_use_styles.useStyles({
|
|
357
|
+
name: "Divider",
|
|
358
|
+
props: styleProps,
|
|
359
|
+
classes: require_divider_module.default,
|
|
360
|
+
className: () => props.value.className,
|
|
361
|
+
style: () => props.value.style,
|
|
362
|
+
classNames: props.value.classNames,
|
|
363
|
+
styles: props.value.styles,
|
|
364
|
+
unstyled: props.value.unstyled,
|
|
365
|
+
attributes: props.value.attributes,
|
|
366
|
+
vars: props.value.vars,
|
|
367
|
+
varsResolver: require_divider_utils.varsResolver
|
|
368
|
+
});
|
|
369
|
+
const rootAttrs = (0, vue.computed)(() => getStyles("root"));
|
|
370
|
+
const mergedAttrs = (0, vue.computed)(() => {
|
|
371
|
+
const others = {};
|
|
372
|
+
const propsValue = props.value;
|
|
373
|
+
for (const key in propsValue) if (!knownProps.includes(key)) others[key] = propsValue[key];
|
|
374
|
+
const userMod = props.value.mod;
|
|
375
|
+
const mergedMod = [...Array.isArray(userMod) ? userMod : [userMod].filter(Boolean), ...rootModList.value || []];
|
|
376
|
+
return {
|
|
377
|
+
...others,
|
|
378
|
+
mod: mergedMod,
|
|
379
|
+
...rootAttrs.value
|
|
380
|
+
};
|
|
381
|
+
});
|
|
382
|
+
const labelAttrs = (0, vue.computed)(() => getStyles("label"));
|
|
383
|
+
__expose({
|
|
384
|
+
root: (0, vue.computed)(() => _root.value?.root ?? null),
|
|
385
|
+
label: (0, vue.computed)(() => _label.value?.root ?? null)
|
|
386
|
+
});
|
|
387
|
+
const __returned__ = {
|
|
388
|
+
_root,
|
|
389
|
+
_label,
|
|
390
|
+
attrs,
|
|
391
|
+
slots,
|
|
392
|
+
rawProps,
|
|
393
|
+
defaultProps,
|
|
394
|
+
props,
|
|
395
|
+
knownProps,
|
|
396
|
+
rootModList,
|
|
397
|
+
labelModList,
|
|
398
|
+
styleProps,
|
|
399
|
+
getStyles,
|
|
400
|
+
rootAttrs,
|
|
401
|
+
mergedAttrs,
|
|
402
|
+
labelAttrs,
|
|
403
|
+
get CBox() {
|
|
404
|
+
return require_index.CBox;
|
|
405
|
+
}
|
|
406
|
+
};
|
|
407
|
+
Object.defineProperty(__returned__, "__isScriptSetup", {
|
|
408
|
+
enumerable: false,
|
|
409
|
+
value: true
|
|
410
|
+
});
|
|
411
|
+
return __returned__;
|
|
412
|
+
}
|
|
413
|
+
});
|
|
414
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
415
|
+
return (0, vue.openBlock)(), (0, vue.createBlock)($setup["CBox"], (0, vue.mergeProps)({
|
|
416
|
+
ref: "_root",
|
|
417
|
+
role: "separator"
|
|
418
|
+
}, $setup.mergedAttrs), {
|
|
419
|
+
default: (0, vue.withCtx)(() => [_ctx.$slots.label ? ((0, vue.openBlock)(), (0, vue.createBlock)($setup["CBox"], (0, vue.mergeProps)({
|
|
420
|
+
key: 0,
|
|
421
|
+
component: "span",
|
|
422
|
+
ref: "_label"
|
|
423
|
+
}, $setup.labelAttrs, { mod: $setup.labelModList }), {
|
|
424
|
+
default: (0, vue.withCtx)(() => [(0, vue.renderSlot)(_ctx.$slots, "label")]),
|
|
425
|
+
_: 3
|
|
426
|
+
}, 16, ["mod"])) : (0, vue.createCommentVNode)("v-if", true)]),
|
|
427
|
+
_: 3
|
|
428
|
+
}, 16);
|
|
429
|
+
}
|
|
430
|
+
var divider_default = /*#__PURE__*/ require_export_helper.default(_sfc_main, [["render", _sfc_render], ["__file", "/home/runner/work/cck-ui/cck-ui/packages/@cck-ui/core/src/components/divider/divider.vue"]]);
|
|
431
|
+
//#endregion
|
|
432
|
+
exports.default = divider_default;
|
|
433
|
+
|
|
434
|
+
//# sourceMappingURL=divider.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"divider.cjs","names":[],"sources":["../../../src/components/divider/divider.vue"],"sourcesContent":["<template>\n <c-box ref=\"_root\" role=\"separator\" v-bind=\"mergedAttrs\">\n <c-box\n component=\"span\"\n ref=\"_label\"\n v-bind=\"labelAttrs\"\n v-if=\"$slots.label\"\n :mod=\"labelModList\"\n >\n <slot name=\"label\" />\n </c-box>\n </c-box>\n</template>\n\n<script setup lang=\"ts\">\nimport { computed, ref, useAttrs, useSlots } from 'vue'\nimport { CBox, CStyleProp, useComponentProps, useStyles } from '../../core'\nimport { DividerFactory, DividerProps } from './divider.types'\nimport classes from './divider.module.css'\nimport { varsResolver } from './divider.utils'\n\ndefineOptions({\n name: 'CDivider',\n})\n\nconst _root = ref<InstanceType<typeof CBox> | null>(null)\nconst _label = ref<InstanceType<typeof CBox> | null>(null)\n\nconst attrs = useAttrs()\nconst slots = useSlots()\n\nconst rawProps = defineProps<DividerProps>()\n\nconst defaultProps = {\n orientation: 'horizontal',\n} satisfies Partial<DividerProps>\n\nconst props = useComponentProps({\n component: 'CDivider',\n defaultProps,\n props: rawProps,\n})\n\nconst knownProps = [\n 'classNames',\n 'className',\n 'style',\n 'styles',\n 'unstyled',\n 'vars',\n 'color',\n 'orientation',\n 'labelPosition',\n 'mod',\n 'attributes',\n]\n\nconst rootModList = computed(() => [\n { orientation: props.value.orientation },\n { withLabel: !!slots.label },\n])\n\nconst labelModList = computed(() => [{ position: props.value.labelPosition }])\n\nconst styleProps = computed(() => ({\n ...props.value,\n ...attrs,\n style: (attrs.style ?? props.value.style) as CStyleProp,\n}))\n\nconst getStyles = useStyles<DividerFactory>({\n name: 'Divider',\n props: styleProps,\n classes,\n className: () => props.value.className,\n style: () => props.value.style,\n classNames: props.value.classNames,\n styles: props.value.styles,\n unstyled: props.value.unstyled,\n attributes: props.value.attributes,\n vars: props.value.vars,\n varsResolver,\n})\n\nconst rootAttrs = computed(() => getStyles('root'))\n\nconst mergedAttrs = computed(() => {\n const others: Record<string, any> = {}\n const propsValue = props.value\n for (const key in propsValue) {\n if (!knownProps.includes(key)) {\n others[key] = propsValue[key as keyof typeof propsValue]\n }\n }\n const userMod = props.value.mod\n const mergedMod = [\n ...(Array.isArray(userMod) ? userMod : [userMod].filter(Boolean)),\n ...(rootModList.value || []),\n ]\n return { ...others, mod: mergedMod, ...rootAttrs.value }\n})\n\nconst labelAttrs = computed(() => getStyles('label'))\n\ndefineExpose({\n root: computed(() => _root.value?.root ?? null),\n label: computed(() => _label.value?.root ?? null),\n})\n</script>\n"],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
//#region packages/@cck-ui/core/src/components/divider/divider.module.css
|
|
3
|
+
var divider_module_default = {
|
|
4
|
+
"root": "m_35209716",
|
|
5
|
+
"label": "m_6e972f40"
|
|
6
|
+
};
|
|
7
|
+
//#endregion
|
|
8
|
+
exports.default = divider_module_default;
|
|
9
|
+
|
|
10
|
+
//# sourceMappingURL=divider.module.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"divider.module.cjs","names":[],"sources":["../../../src/components/divider/divider.module.css"],"sourcesContent":[".root {\n --divider-size-xs: 1px;\n --divider-size-sm: 2px;\n --divider-size-md: 3px;\n --divider-size-lg: 4px;\n --divider-size-xl: 5px;\n --divider-size: var(--divider-size-xs);\n\n @mixin where-light {\n --divider-color: var(--c-color-gray-3);\n }\n\n @mixin where-dark {\n --divider-color: var(--c-color-dark-4);\n }\n\n &:where([data-orientation='horizontal']) {\n border-top: var(--divider-size) var(--divider-border-style, solid) var(--divider-color);\n }\n\n &:where([data-orientation='vertical']) {\n border-inline-start: var(--divider-size) var(--divider-border-style, solid) var(--divider-color);\n height: auto;\n align-self: stretch;\n }\n\n &:where([data-with-label]) {\n border: 0;\n }\n}\n\n.label {\n display: flex;\n align-items: center;\n font-size: var(--c-font-size-xs);\n color: var(--c-color-dimmed);\n white-space: nowrap;\n\n &:where([data-position='left'])::before {\n display: none;\n }\n\n &:where([data-position='right'])::after {\n display: none;\n }\n\n &::before {\n content: '';\n flex: 1;\n height: 1px;\n border-top: var(--divider-size) var(--divider-border-style, solid) var(--divider-color);\n margin-inline-end: var(--c-spacing-xs);\n }\n\n &::after {\n content: '';\n flex: 1;\n height: 1px;\n border-top: var(--divider-size) var(--divider-border-style, solid) var(--divider-color);\n margin-inline-start: var(--c-spacing-xs);\n }\n}\n"],"mappings":";;AAAA,IAAA,yBAAe;CAAC,QAAO;CAAa,SAAQ;AAAY"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_get_size = require("../../core/utils/get-size/get-size.cjs");
|
|
3
|
+
const require_get_theme_color = require("../../core/config-provider/color-functions/get-theme-color/get-theme-color.cjs");
|
|
4
|
+
//#region packages/@cck-ui/core/src/components/divider/divider.utils.ts
|
|
5
|
+
const varsResolver = require("../../core/styles-api/create-vars-resolver/create-vars-resolver.cjs").createVarsResolver((theme, { color, variant, size }) => ({ root: {
|
|
6
|
+
"--divider-border-style": variant,
|
|
7
|
+
"--divider-color": color ? require_get_theme_color.getThemeColor(color, theme) : void 0,
|
|
8
|
+
"--divider-size": require_get_size.getSize(size, "divider-size")
|
|
9
|
+
} }));
|
|
10
|
+
//#endregion
|
|
11
|
+
exports.varsResolver = varsResolver;
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=divider.utils.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"divider.utils.cjs","names":["createVarsResolver","getThemeColor","getSize"],"sources":["../../../src/components/divider/divider.utils.ts"],"sourcesContent":["import { createVarsResolver, getSize, getThemeColor } from '../../core'\nimport { DividerFactory } from './divider.types'\n\nexport const varsResolver = createVarsResolver<DividerFactory>(\n (theme, { color, variant, size }) => ({\n root: {\n '--divider-border-style': variant,\n '--divider-color': color ? getThemeColor(color, theme) : undefined,\n '--divider-size': getSize(size, 'divider-size'),\n },\n })\n)\n"],"mappings":";;;;AAGA,MAAa,4FAAeA,CAAAA,CAAAA,oBACzB,OAAO,EAAE,OAAO,SAAS,YAAY,EACpC,MAAM;CACJ,0BAA0B;CAC1B,mBAAmB,QAAQC,wBAAAA,cAAc,OAAO,KAAK,IAAI,KAAA;CACzD,kBAAkBC,iBAAAA,QAAQ,MAAM,cAAc;AAChD,EACF,EACF"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_install = require("../../core/utils/vue/install.cjs");
|
|
3
|
+
const require_statics = require("../../core/utils/vue/statics.cjs");
|
|
4
|
+
const require_divider_module = require("./divider.module.cjs");
|
|
5
|
+
const require_divider_utils = require("./divider.utils.cjs");
|
|
6
|
+
const require_divider = require("./divider.cjs");
|
|
7
|
+
//#region packages/@cck-ui/core/src/components/divider/index.ts
|
|
8
|
+
const DividerWithStatic = require_statics.withPropsFactory(require_statics.withExtend(require_statics.withVarsResolver(require_statics.withClasses(require_divider.default, require_divider_module.default), require_divider_utils.varsResolver)));
|
|
9
|
+
const CDivider = require_install.withInstall(DividerWithStatic);
|
|
10
|
+
//#endregion
|
|
11
|
+
exports.CDivider = CDivider;
|
|
12
|
+
exports.default = CDivider;
|
|
13
|
+
|
|
14
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","names":["withPropsFactory","withExtend","withVarsResolver","withClasses","Divider","classes","varsResolver","withInstall"],"sources":["../../../src/components/divider/index.ts"],"sourcesContent":["import {\n SFCWithInstallAndClasses,\n withClasses,\n withExtend,\n withInstall,\n withPropsFactory,\n withVarsResolver,\n} from '../../core'\nimport classes from './divider.module.css'\nimport { varsResolver } from './divider.utils'\nimport Divider from './divider.vue'\n\nconst DividerWithStatic = withPropsFactory(\n withExtend(withVarsResolver(withClasses(Divider, classes), varsResolver))\n)\n\nexport const CDivider: SFCWithInstallAndClasses<typeof Divider, typeof classes> =\n withInstall(DividerWithStatic)\n\nexport default CDivider\n\nexport * from './divider.types'\n"],"mappings":";;;;;;;AAYA,MAAM,oBAAoBA,gBAAAA,iBACxBC,gBAAAA,WAAWC,gBAAAA,iBAAiBC,gBAAAA,YAAYC,gBAAAA,SAASC,uBAAAA,OAAO,GAAGC,sBAAAA,YAAY,CAAC,CAC1E;AAEA,MAAa,WACXC,gBAAAA,YAAY,iBAAiB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_install = require("../../core/utils/vue/install.cjs");
|
|
3
|
+
const require_statics = require("../../core/utils/vue/statics.cjs");
|
|
4
|
+
const require_portal = require("./portal.cjs");
|
|
5
|
+
//#region packages/@cck-ui/core/src/components/portal/index.ts
|
|
6
|
+
const PortalWithStatic = require_statics.withPropsFactory(require_statics.withExtend(require_portal.default));
|
|
7
|
+
const CPortal = require_install.withInstall(PortalWithStatic);
|
|
8
|
+
//#endregion
|
|
9
|
+
exports.CPortal = CPortal;
|
|
10
|
+
exports.default = CPortal;
|
|
11
|
+
|
|
12
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","names":["withPropsFactory","withExtend","Portal","withInstall"],"sources":["../../../src/components/portal/index.ts"],"sourcesContent":["import { SFCWithInstall, withExtend, withInstall, withPropsFactory } from '../../core'\nimport Portal from './portal.vue'\n\nconst PortalWithStatic = withPropsFactory(withExtend(Portal))\n\nexport const CPortal: SFCWithInstall<typeof Portal> = withInstall(PortalWithStatic)\n\nexport default CPortal\n\nexport * from './portal.types'\n"],"mappings":";;;;;AAGA,MAAM,mBAAmBA,gBAAAA,iBAAiBC,gBAAAA,WAAWC,eAAAA,OAAM,CAAC;AAE5D,MAAa,UAAyCC,gBAAAA,YAAY,gBAAgB"}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_export_helper = require("../../_virtual/_/plugin-vue/export-helper.cjs");
|
|
3
|
+
const require_use_component_props = require("../../core/config-provider/use-component-props/use-component-props.cjs");
|
|
4
|
+
let vue = require("vue");
|
|
5
|
+
//#region packages/@cck-ui/core/src/components/portal/portal.vue
|
|
6
|
+
const _sfc_main = /*@__PURE__*/ (0, vue.defineComponent)({
|
|
7
|
+
name: "CPortal",
|
|
8
|
+
__name: "portal",
|
|
9
|
+
props: {
|
|
10
|
+
target: {
|
|
11
|
+
type: null,
|
|
12
|
+
required: false
|
|
13
|
+
},
|
|
14
|
+
reuseTargetNode: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
required: false
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(__props, { expose: __expose }) {
|
|
20
|
+
const attrs = (0, vue.useAttrs)();
|
|
21
|
+
const rawProps = __props;
|
|
22
|
+
const defaultProps = { reuseTargetNode: true };
|
|
23
|
+
const props = require_use_component_props.useComponentProps({
|
|
24
|
+
component: "CPortal",
|
|
25
|
+
defaultProps,
|
|
26
|
+
props: rawProps
|
|
27
|
+
});
|
|
28
|
+
const container = (0, vue.ref)(null);
|
|
29
|
+
let createdNode = null;
|
|
30
|
+
function createPortalNode(nodeAttrs) {
|
|
31
|
+
const node = document.createElement("div");
|
|
32
|
+
node.setAttribute("data-portal", "true");
|
|
33
|
+
const className = nodeAttrs.class || nodeAttrs.className;
|
|
34
|
+
if (className) node.classList.add(...String(className).split(" ").filter(Boolean));
|
|
35
|
+
if (nodeAttrs.style) Object.assign(node.style, nodeAttrs.style);
|
|
36
|
+
if (nodeAttrs.id) node.setAttribute("id", nodeAttrs.id);
|
|
37
|
+
Object.keys(nodeAttrs).forEach((key) => {
|
|
38
|
+
if (![
|
|
39
|
+
"class",
|
|
40
|
+
"className",
|
|
41
|
+
"style",
|
|
42
|
+
"id"
|
|
43
|
+
].includes(key)) node.setAttribute(key, nodeAttrs[key]);
|
|
44
|
+
});
|
|
45
|
+
return node;
|
|
46
|
+
}
|
|
47
|
+
function getTargetNode() {
|
|
48
|
+
const target = props.value.target;
|
|
49
|
+
const reuseTargetNode = props.value.reuseTargetNode;
|
|
50
|
+
if (target) {
|
|
51
|
+
if (typeof target === "string") {
|
|
52
|
+
const found = document.querySelector(target);
|
|
53
|
+
if (found) return found;
|
|
54
|
+
const node = createPortalNode(attrs);
|
|
55
|
+
document.body.appendChild(node);
|
|
56
|
+
createdNode = node;
|
|
57
|
+
return node;
|
|
58
|
+
}
|
|
59
|
+
return target;
|
|
60
|
+
}
|
|
61
|
+
if (reuseTargetNode) {
|
|
62
|
+
const existing = document.querySelector("[data-cck-shared-portal]");
|
|
63
|
+
if (existing) return existing;
|
|
64
|
+
const node = createPortalNode(attrs);
|
|
65
|
+
node.setAttribute("data-cck-shared-portal", "true");
|
|
66
|
+
document.body.appendChild(node);
|
|
67
|
+
createdNode = node;
|
|
68
|
+
return node;
|
|
69
|
+
}
|
|
70
|
+
const node = createPortalNode(attrs);
|
|
71
|
+
document.body.appendChild(node);
|
|
72
|
+
createdNode = node;
|
|
73
|
+
return node;
|
|
74
|
+
}
|
|
75
|
+
(0, vue.onMounted)(() => {
|
|
76
|
+
container.value = getTargetNode();
|
|
77
|
+
});
|
|
78
|
+
(0, vue.onBeforeUnmount)(() => {
|
|
79
|
+
if (createdNode && !createdNode.hasAttribute("data-cck-shared-portal")) {
|
|
80
|
+
if (createdNode.parentNode) createdNode.parentNode.removeChild(createdNode);
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
__expose({ root: container });
|
|
84
|
+
const __returned__ = {
|
|
85
|
+
attrs,
|
|
86
|
+
rawProps,
|
|
87
|
+
defaultProps,
|
|
88
|
+
props,
|
|
89
|
+
container,
|
|
90
|
+
get createdNode() {
|
|
91
|
+
return createdNode;
|
|
92
|
+
},
|
|
93
|
+
set createdNode(v) {
|
|
94
|
+
createdNode = v;
|
|
95
|
+
},
|
|
96
|
+
createPortalNode,
|
|
97
|
+
getTargetNode
|
|
98
|
+
};
|
|
99
|
+
Object.defineProperty(__returned__, "__isScriptSetup", {
|
|
100
|
+
enumerable: false,
|
|
101
|
+
value: true
|
|
102
|
+
});
|
|
103
|
+
return __returned__;
|
|
104
|
+
}
|
|
105
|
+
});
|
|
106
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
107
|
+
return $setup.container ? ((0, vue.openBlock)(), (0, vue.createBlock)(vue.Teleport, {
|
|
108
|
+
key: 0,
|
|
109
|
+
to: $setup.container
|
|
110
|
+
}, [(0, vue.renderSlot)(_ctx.$slots, "default")], 8, ["to"])) : (0, vue.createCommentVNode)("v-if", true);
|
|
111
|
+
}
|
|
112
|
+
var portal_default = /*#__PURE__*/ require_export_helper.default(_sfc_main, [["render", _sfc_render], ["__file", "/home/runner/work/cck-ui/cck-ui/packages/@cck-ui/core/src/components/portal/portal.vue"]]);
|
|
113
|
+
//#endregion
|
|
114
|
+
exports.default = portal_default;
|
|
115
|
+
|
|
116
|
+
//# sourceMappingURL=portal.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"portal.cjs","names":[],"sources":["../../../src/components/portal/portal.vue"],"sourcesContent":["<template>\n <Teleport v-if=\"container\" :to=\"container\">\n <slot />\n </Teleport>\n</template>\n\n<script setup lang=\"ts\">\nimport { onBeforeUnmount, onMounted, ref, useAttrs } from 'vue'\nimport { PortalProps } from './portal.types'\nimport { useComponentProps } from '../../core'\n\ndefineOptions({\n name: 'CPortal',\n})\n\nconst attrs = useAttrs()\n\nconst rawProps = defineProps<PortalProps>()\n\nconst defaultProps = {\n reuseTargetNode: true,\n} satisfies Partial<PortalProps>\n\nconst props = useComponentProps({\n component: 'CPortal',\n defaultProps,\n props: rawProps,\n})\n\nconst container = ref<HTMLElement | null>(null)\nlet createdNode: HTMLElement | null = null\n\nfunction createPortalNode(nodeAttrs: Record<string, any>): HTMLElement {\n const node = document.createElement('div')\n node.setAttribute('data-portal', 'true')\n\n const className = nodeAttrs.class || nodeAttrs.className\n if (className) {\n node.classList.add(...String(className).split(' ').filter(Boolean))\n }\n if (nodeAttrs.style) {\n Object.assign(node.style, nodeAttrs.style)\n }\n if (nodeAttrs.id) {\n node.setAttribute('id', nodeAttrs.id)\n }\n Object.keys(nodeAttrs).forEach((key) => {\n if (!['class', 'className', 'style', 'id'].includes(key)) {\n node.setAttribute(key, nodeAttrs[key])\n }\n })\n\n return node\n}\n\nfunction getTargetNode(): HTMLElement {\n const target = props.value.target\n const reuseTargetNode = props.value.reuseTargetNode\n\n if (target) {\n if (typeof target === 'string') {\n const found = document.querySelector<HTMLElement>(target)\n if (found) {\n return found\n }\n const node = createPortalNode(attrs)\n document.body.appendChild(node)\n createdNode = node\n return node\n }\n return target\n }\n\n if (reuseTargetNode) {\n const existing = document.querySelector<HTMLElement>('[data-cck-shared-portal]')\n if (existing) {\n return existing\n }\n const node = createPortalNode(attrs)\n node.setAttribute('data-cck-shared-portal', 'true')\n document.body.appendChild(node)\n createdNode = node\n return node\n }\n\n const node = createPortalNode(attrs)\n document.body.appendChild(node)\n createdNode = node\n return node\n}\n\nonMounted(() => {\n container.value = getTargetNode()\n})\n\nonBeforeUnmount(() => {\n if (createdNode && !createdNode.hasAttribute('data-cck-shared-portal')) {\n if (createdNode.parentNode) {\n createdNode.parentNode.removeChild(createdNode)\n }\n }\n})\n\ndefineExpose({\n root: container,\n})\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EAeA,MAAM,SAAA,GAAA,IAAA,SAAA,CAAiB;EAEvB,MAAM,WAAW;EAEjB,MAAM,eAAe,EACnB,iBAAiB,KACnB;EAEA,MAAM,QAAQ,4BAAA,kBAAkB;GAC9B,WAAW;GACX;GACA,OAAO;EACT,CAAC;EAED,MAAM,aAAA,GAAA,IAAA,IAAA,CAAoC,IAAI;EAC9C,IAAI,cAAkC;EAEtC,SAAS,iBAAiB,WAA6C;GACrE,MAAM,OAAO,SAAS,cAAc,KAAK;GACzC,KAAK,aAAa,eAAe,MAAM;GAEvC,MAAM,YAAY,UAAU,SAAS,UAAU;GAC/C,IAAI,WACF,KAAK,UAAU,IAAI,GAAG,OAAO,SAAS,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,OAAO,OAAO,CAAC;GAEpE,IAAI,UAAU,OACZ,OAAO,OAAO,KAAK,OAAO,UAAU,KAAK;GAE3C,IAAI,UAAU,IACZ,KAAK,aAAa,MAAM,UAAU,EAAE;GAEtC,OAAO,KAAK,SAAS,CAAC,CAAC,SAAS,QAAQ;IACtC,IAAI,CAAC;KAAC;KAAS;KAAa;KAAS;IAAI,CAAC,CAAC,SAAS,GAAG,GACrD,KAAK,aAAa,KAAK,UAAU,IAAI;GAEzC,CAAC;GAED,OAAO;EACT;EAEA,SAAS,gBAA6B;GACpC,MAAM,SAAS,MAAM,MAAM;GAC3B,MAAM,kBAAkB,MAAM,MAAM;GAEpC,IAAI,QAAQ;IACV,IAAI,OAAO,WAAW,UAAU;KAC9B,MAAM,QAAQ,SAAS,cAA2B,MAAM;KACxD,IAAI,OACF,OAAO;KAET,MAAM,OAAO,iBAAiB,KAAK;KACnC,SAAS,KAAK,YAAY,IAAI;KAC9B,cAAc;KACd,OAAO;IACT;IACA,OAAO;GACT;GAEA,IAAI,iBAAiB;IACnB,MAAM,WAAW,SAAS,cAA2B,0BAA0B;IAC/E,IAAI,UACF,OAAO;IAET,MAAM,OAAO,iBAAiB,KAAK;IACnC,KAAK,aAAa,0BAA0B,MAAM;IAClD,SAAS,KAAK,YAAY,IAAI;IAC9B,cAAc;IACd,OAAO;GACT;GAEA,MAAM,OAAO,iBAAiB,KAAK;GACnC,SAAS,KAAK,YAAY,IAAI;GAC9B,cAAc;GACd,OAAO;EACT;EAEA,CAAA,GAAA,IAAA,UAAA,OAAgB;GACd,UAAU,QAAQ,cAAc;EAClC,CAAC;EAED,CAAA,GAAA,IAAA,gBAAA,OAAsB;GACpB,IAAI,eAAe,CAAC,YAAY,aAAa,wBAAwB;QAC/D,YAAY,YACd,YAAY,WAAW,YAAY,WAAW;GAAA;EAGpD,CAAC;EAED,SAAa,EACX,MAAM,UACR,CAAC;;;;;;;;;;;;;;;;;;;;;;;;QAxGiB,OAAA,cAAA,GAAA,IAAA,UAAA,CAAA,IAAA,GAAA,IAAA,YAAA,CAEL,IAAA,UAAA;;EAFiB,IAAI,OAAA;yBACtB,KAAA,QAAA,SAAA,CAAA,GAAA,GAAA,CAAA,IAAA,CAAA,MAAA,GAAA,IAAA,mBAAA,CAAA,QAAA,IAAA"}
|