@cck-ui/core 0.6.1 → 0.8.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/aspect-ratio/aspect-ratio.cjs +389 -0
- package/cjs/components/aspect-ratio/aspect-ratio.cjs.map +1 -0
- package/cjs/components/aspect-ratio/aspect-ratio.module.cjs +7 -0
- package/cjs/components/aspect-ratio/aspect-ratio.module.cjs.map +1 -0
- package/cjs/components/aspect-ratio/aspect-ratio.utils.cjs +7 -0
- package/cjs/components/aspect-ratio/aspect-ratio.utils.cjs.map +1 -0
- package/cjs/components/aspect-ratio/index.cjs +14 -0
- package/cjs/components/aspect-ratio/index.cjs.map +1 -0
- package/cjs/components/center/center.cjs +390 -0
- package/cjs/components/center/center.cjs.map +1 -0
- package/cjs/components/center/center.module.cjs +7 -0
- package/cjs/components/center/center.module.cjs.map +1 -0
- package/cjs/components/center/index.cjs +13 -0
- package/cjs/components/center/index.cjs.map +1 -0
- package/cjs/components/grid/grid.cjs +1 -1
- package/cjs/components/grid/grid.cjs.map +1 -1
- package/cjs/components/simple-grid/simple-grid.cjs +1 -1
- package/cjs/components/simple-grid/simple-grid.cjs.map +1 -1
- package/cjs/index.cjs +38 -34
- package/cjs/index.cjs.map +1 -1
- package/esm/components/aspect-ratio/aspect-ratio.mjs +389 -0
- package/esm/components/aspect-ratio/aspect-ratio.mjs.map +1 -0
- package/esm/components/aspect-ratio/aspect-ratio.module.mjs +7 -0
- package/esm/components/aspect-ratio/aspect-ratio.module.mjs.map +1 -0
- package/esm/components/aspect-ratio/aspect-ratio.utils.mjs +8 -0
- package/esm/components/aspect-ratio/aspect-ratio.utils.mjs.map +1 -0
- package/esm/components/aspect-ratio/index.mjs +11 -0
- package/esm/components/aspect-ratio/index.mjs.map +1 -0
- package/esm/components/center/center.mjs +390 -0
- package/esm/components/center/center.mjs.map +1 -0
- package/esm/components/center/center.module.mjs +7 -0
- package/esm/components/center/center.module.mjs.map +1 -0
- package/esm/components/center/index.mjs +10 -0
- package/esm/components/center/index.mjs.map +1 -0
- package/esm/components/grid/grid.mjs +1 -1
- package/esm/components/grid/grid.mjs.map +1 -1
- package/esm/components/simple-grid/simple-grid.mjs +1 -1
- package/esm/components/simple-grid/simple-grid.mjs.map +1 -1
- package/esm/index.mjs +3 -1
- package/esm/index.mjs.map +1 -1
- package/lib/components/aspect-ratio/aspect-ratio.types.d.ts +18 -0
- package/lib/components/aspect-ratio/aspect-ratio.utils.d.ts +6 -0
- package/lib/components/aspect-ratio/index.d.ts +6 -0
- package/lib/components/center/center.types.d.ts +14 -0
- package/lib/components/center/index.d.ts +6 -0
- package/lib/components/index.d.ts +2 -0
- package/package.json +1 -1
- package/styles/aspect-ratio.css +13 -0
- package/styles/aspect-ratio.layer.css +14 -0
- package/styles/center.css +9 -0
- package/styles/center.layer.css +10 -0
- package/styles.css +24 -0
- package/styles.layer.css +24 -0
|
@@ -0,0 +1,390 @@
|
|
|
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_center_module = require("./center.module.cjs");
|
|
7
|
+
let vue = require("vue");
|
|
8
|
+
//#region packages/@cck-ui/core/src/components/center/center.vue
|
|
9
|
+
const _sfc_main = /*@__PURE__*/ (0, vue.defineComponent)({
|
|
10
|
+
name: "CCenter",
|
|
11
|
+
__name: "center",
|
|
12
|
+
props: {
|
|
13
|
+
inline: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
required: false
|
|
16
|
+
},
|
|
17
|
+
className: {
|
|
18
|
+
type: String,
|
|
19
|
+
required: false
|
|
20
|
+
},
|
|
21
|
+
style: {
|
|
22
|
+
type: [
|
|
23
|
+
Object,
|
|
24
|
+
Function,
|
|
25
|
+
Array
|
|
26
|
+
],
|
|
27
|
+
required: false,
|
|
28
|
+
skipCheck: true
|
|
29
|
+
},
|
|
30
|
+
__vars: {
|
|
31
|
+
type: null,
|
|
32
|
+
required: false
|
|
33
|
+
},
|
|
34
|
+
__size: {
|
|
35
|
+
type: String,
|
|
36
|
+
required: false
|
|
37
|
+
},
|
|
38
|
+
hiddenFrom: {
|
|
39
|
+
type: null,
|
|
40
|
+
required: false
|
|
41
|
+
},
|
|
42
|
+
visibleFrom: {
|
|
43
|
+
type: null,
|
|
44
|
+
required: false
|
|
45
|
+
},
|
|
46
|
+
lightHidden: {
|
|
47
|
+
type: Boolean,
|
|
48
|
+
required: false
|
|
49
|
+
},
|
|
50
|
+
darkHidden: {
|
|
51
|
+
type: Boolean,
|
|
52
|
+
required: false
|
|
53
|
+
},
|
|
54
|
+
mod: {
|
|
55
|
+
type: [
|
|
56
|
+
Object,
|
|
57
|
+
String,
|
|
58
|
+
Array
|
|
59
|
+
],
|
|
60
|
+
required: false
|
|
61
|
+
},
|
|
62
|
+
m: {
|
|
63
|
+
type: null,
|
|
64
|
+
required: false
|
|
65
|
+
},
|
|
66
|
+
my: {
|
|
67
|
+
type: null,
|
|
68
|
+
required: false
|
|
69
|
+
},
|
|
70
|
+
mx: {
|
|
71
|
+
type: null,
|
|
72
|
+
required: false
|
|
73
|
+
},
|
|
74
|
+
mt: {
|
|
75
|
+
type: null,
|
|
76
|
+
required: false
|
|
77
|
+
},
|
|
78
|
+
mb: {
|
|
79
|
+
type: null,
|
|
80
|
+
required: false
|
|
81
|
+
},
|
|
82
|
+
ms: {
|
|
83
|
+
type: null,
|
|
84
|
+
required: false
|
|
85
|
+
},
|
|
86
|
+
me: {
|
|
87
|
+
type: null,
|
|
88
|
+
required: false
|
|
89
|
+
},
|
|
90
|
+
mis: {
|
|
91
|
+
type: null,
|
|
92
|
+
required: false
|
|
93
|
+
},
|
|
94
|
+
mie: {
|
|
95
|
+
type: null,
|
|
96
|
+
required: false
|
|
97
|
+
},
|
|
98
|
+
ml: {
|
|
99
|
+
type: null,
|
|
100
|
+
required: false
|
|
101
|
+
},
|
|
102
|
+
mr: {
|
|
103
|
+
type: null,
|
|
104
|
+
required: false
|
|
105
|
+
},
|
|
106
|
+
p: {
|
|
107
|
+
type: null,
|
|
108
|
+
required: false
|
|
109
|
+
},
|
|
110
|
+
py: {
|
|
111
|
+
type: null,
|
|
112
|
+
required: false
|
|
113
|
+
},
|
|
114
|
+
px: {
|
|
115
|
+
type: null,
|
|
116
|
+
required: false
|
|
117
|
+
},
|
|
118
|
+
pt: {
|
|
119
|
+
type: null,
|
|
120
|
+
required: false
|
|
121
|
+
},
|
|
122
|
+
pb: {
|
|
123
|
+
type: null,
|
|
124
|
+
required: false
|
|
125
|
+
},
|
|
126
|
+
ps: {
|
|
127
|
+
type: null,
|
|
128
|
+
required: false
|
|
129
|
+
},
|
|
130
|
+
pe: {
|
|
131
|
+
type: null,
|
|
132
|
+
required: false
|
|
133
|
+
},
|
|
134
|
+
pis: {
|
|
135
|
+
type: null,
|
|
136
|
+
required: false
|
|
137
|
+
},
|
|
138
|
+
pie: {
|
|
139
|
+
type: null,
|
|
140
|
+
required: false
|
|
141
|
+
},
|
|
142
|
+
pl: {
|
|
143
|
+
type: null,
|
|
144
|
+
required: false
|
|
145
|
+
},
|
|
146
|
+
pr: {
|
|
147
|
+
type: null,
|
|
148
|
+
required: false
|
|
149
|
+
},
|
|
150
|
+
bd: {
|
|
151
|
+
type: null,
|
|
152
|
+
required: false
|
|
153
|
+
},
|
|
154
|
+
bdrs: {
|
|
155
|
+
type: null,
|
|
156
|
+
required: false
|
|
157
|
+
},
|
|
158
|
+
bg: {
|
|
159
|
+
type: null,
|
|
160
|
+
required: false
|
|
161
|
+
},
|
|
162
|
+
c: {
|
|
163
|
+
type: null,
|
|
164
|
+
required: false
|
|
165
|
+
},
|
|
166
|
+
opacity: {
|
|
167
|
+
type: [
|
|
168
|
+
String,
|
|
169
|
+
Object,
|
|
170
|
+
Number
|
|
171
|
+
],
|
|
172
|
+
required: false
|
|
173
|
+
},
|
|
174
|
+
ff: {
|
|
175
|
+
type: [String, Object],
|
|
176
|
+
required: false
|
|
177
|
+
},
|
|
178
|
+
fz: {
|
|
179
|
+
type: null,
|
|
180
|
+
required: false
|
|
181
|
+
},
|
|
182
|
+
fw: {
|
|
183
|
+
type: null,
|
|
184
|
+
required: false
|
|
185
|
+
},
|
|
186
|
+
lts: {
|
|
187
|
+
type: null,
|
|
188
|
+
required: false
|
|
189
|
+
},
|
|
190
|
+
ta: {
|
|
191
|
+
type: [String, Object],
|
|
192
|
+
required: false
|
|
193
|
+
},
|
|
194
|
+
lh: {
|
|
195
|
+
type: null,
|
|
196
|
+
required: false
|
|
197
|
+
},
|
|
198
|
+
fs: {
|
|
199
|
+
type: null,
|
|
200
|
+
required: false
|
|
201
|
+
},
|
|
202
|
+
tt: {
|
|
203
|
+
type: [String, Object],
|
|
204
|
+
required: false
|
|
205
|
+
},
|
|
206
|
+
td: {
|
|
207
|
+
type: null,
|
|
208
|
+
required: false
|
|
209
|
+
},
|
|
210
|
+
w: {
|
|
211
|
+
type: null,
|
|
212
|
+
required: false
|
|
213
|
+
},
|
|
214
|
+
miw: {
|
|
215
|
+
type: null,
|
|
216
|
+
required: false
|
|
217
|
+
},
|
|
218
|
+
maw: {
|
|
219
|
+
type: null,
|
|
220
|
+
required: false
|
|
221
|
+
},
|
|
222
|
+
h: {
|
|
223
|
+
type: null,
|
|
224
|
+
required: false
|
|
225
|
+
},
|
|
226
|
+
mih: {
|
|
227
|
+
type: null,
|
|
228
|
+
required: false
|
|
229
|
+
},
|
|
230
|
+
mah: {
|
|
231
|
+
type: null,
|
|
232
|
+
required: false
|
|
233
|
+
},
|
|
234
|
+
bgsz: {
|
|
235
|
+
type: null,
|
|
236
|
+
required: false
|
|
237
|
+
},
|
|
238
|
+
bgp: {
|
|
239
|
+
type: null,
|
|
240
|
+
required: false
|
|
241
|
+
},
|
|
242
|
+
bgr: {
|
|
243
|
+
type: null,
|
|
244
|
+
required: false
|
|
245
|
+
},
|
|
246
|
+
bga: {
|
|
247
|
+
type: null,
|
|
248
|
+
required: false
|
|
249
|
+
},
|
|
250
|
+
pos: {
|
|
251
|
+
type: [String, Object],
|
|
252
|
+
required: false
|
|
253
|
+
},
|
|
254
|
+
top: {
|
|
255
|
+
type: null,
|
|
256
|
+
required: false
|
|
257
|
+
},
|
|
258
|
+
left: {
|
|
259
|
+
type: null,
|
|
260
|
+
required: false
|
|
261
|
+
},
|
|
262
|
+
bottom: {
|
|
263
|
+
type: null,
|
|
264
|
+
required: false
|
|
265
|
+
},
|
|
266
|
+
right: {
|
|
267
|
+
type: null,
|
|
268
|
+
required: false
|
|
269
|
+
},
|
|
270
|
+
inset: {
|
|
271
|
+
type: null,
|
|
272
|
+
required: false
|
|
273
|
+
},
|
|
274
|
+
display: {
|
|
275
|
+
type: null,
|
|
276
|
+
required: false
|
|
277
|
+
},
|
|
278
|
+
flex: {
|
|
279
|
+
type: null,
|
|
280
|
+
required: false
|
|
281
|
+
},
|
|
282
|
+
unstyled: {
|
|
283
|
+
type: Boolean,
|
|
284
|
+
required: false
|
|
285
|
+
},
|
|
286
|
+
variant: {
|
|
287
|
+
type: null,
|
|
288
|
+
required: false
|
|
289
|
+
},
|
|
290
|
+
classNames: {
|
|
291
|
+
type: null,
|
|
292
|
+
required: false
|
|
293
|
+
},
|
|
294
|
+
styles: {
|
|
295
|
+
type: null,
|
|
296
|
+
required: false
|
|
297
|
+
},
|
|
298
|
+
vars: {
|
|
299
|
+
type: Function,
|
|
300
|
+
required: false
|
|
301
|
+
},
|
|
302
|
+
attributes: {
|
|
303
|
+
type: null,
|
|
304
|
+
required: false
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
setup(__props, { expose: __expose }) {
|
|
308
|
+
const _root = (0, vue.ref)(null);
|
|
309
|
+
const attrs = (0, vue.useAttrs)();
|
|
310
|
+
const rawProps = __props;
|
|
311
|
+
const props = require_use_component_props.useComponentProps({
|
|
312
|
+
component: "CCenter",
|
|
313
|
+
defaultProps: {},
|
|
314
|
+
props: rawProps
|
|
315
|
+
});
|
|
316
|
+
const knownProps = [
|
|
317
|
+
"classNames",
|
|
318
|
+
"className",
|
|
319
|
+
"style",
|
|
320
|
+
"styles",
|
|
321
|
+
"unstyled",
|
|
322
|
+
"vars",
|
|
323
|
+
"inline",
|
|
324
|
+
"mod",
|
|
325
|
+
"attributes"
|
|
326
|
+
];
|
|
327
|
+
const getStyles = require_use_styles.useStyles({
|
|
328
|
+
name: "Center",
|
|
329
|
+
props: {
|
|
330
|
+
...props.value,
|
|
331
|
+
...attrs
|
|
332
|
+
},
|
|
333
|
+
classes: require_center_module.default,
|
|
334
|
+
className: props.value.className,
|
|
335
|
+
style: props.value.style,
|
|
336
|
+
classNames: props.value.classNames,
|
|
337
|
+
styles: props.value.styles,
|
|
338
|
+
unstyled: props.value.unstyled,
|
|
339
|
+
attributes: props.value.attributes,
|
|
340
|
+
vars: props.value.vars
|
|
341
|
+
});
|
|
342
|
+
const modList = (0, vue.computed)(() => [{ inline: props.value.inline }]);
|
|
343
|
+
const rootAttrs = (0, vue.computed)(() => getStyles("root"));
|
|
344
|
+
const mergedAttrs = (0, vue.computed)(() => {
|
|
345
|
+
const others = {};
|
|
346
|
+
const propsValue = props.value;
|
|
347
|
+
Object.keys(propsValue).forEach((key) => {
|
|
348
|
+
if (!knownProps.includes(key)) others[key] = propsValue[key];
|
|
349
|
+
});
|
|
350
|
+
const userMod = props.value.mod;
|
|
351
|
+
const mergedMod = [...Array.isArray(userMod) ? userMod : [userMod].filter(Boolean), ...modList.value || []];
|
|
352
|
+
return {
|
|
353
|
+
...others,
|
|
354
|
+
mod: mergedMod,
|
|
355
|
+
...rootAttrs.value
|
|
356
|
+
};
|
|
357
|
+
});
|
|
358
|
+
__expose({ root: (0, vue.computed)(() => _root.value?.root ?? null) });
|
|
359
|
+
const __returned__ = {
|
|
360
|
+
_root,
|
|
361
|
+
attrs,
|
|
362
|
+
rawProps,
|
|
363
|
+
props,
|
|
364
|
+
knownProps,
|
|
365
|
+
getStyles,
|
|
366
|
+
modList,
|
|
367
|
+
rootAttrs,
|
|
368
|
+
mergedAttrs,
|
|
369
|
+
get CBox() {
|
|
370
|
+
return require_index.CBox;
|
|
371
|
+
}
|
|
372
|
+
};
|
|
373
|
+
Object.defineProperty(__returned__, "__isScriptSetup", {
|
|
374
|
+
enumerable: false,
|
|
375
|
+
value: true
|
|
376
|
+
});
|
|
377
|
+
return __returned__;
|
|
378
|
+
}
|
|
379
|
+
});
|
|
380
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
381
|
+
return (0, vue.openBlock)(), (0, vue.createBlock)($setup["CBox"], (0, vue.mergeProps)({ ref: "_root" }, $setup.mergedAttrs), {
|
|
382
|
+
default: (0, vue.withCtx)(() => [(0, vue.renderSlot)(_ctx.$slots, "default")]),
|
|
383
|
+
_: 3
|
|
384
|
+
}, 16);
|
|
385
|
+
}
|
|
386
|
+
var center_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/center/center.vue"]]);
|
|
387
|
+
//#endregion
|
|
388
|
+
exports.default = center_default;
|
|
389
|
+
|
|
390
|
+
//# sourceMappingURL=center.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"center.cjs","names":[],"sources":["../../../src/components/center/center.vue"],"sourcesContent":["<template>\n <c-box ref=\"_root\" v-bind=\"mergedAttrs\">\n <slot />\n </c-box>\n</template>\n\n<script setup lang=\"ts\">\nimport { computed, ref, useAttrs } from 'vue'\nimport { CenterFactory, CenterProps } from './center.types'\nimport { CBox, useComponentProps, useStyles } from '../../core'\nimport classes from './center.module.css'\n\ndefineOptions({\n name: 'CCenter',\n})\n\nconst _root = ref<InstanceType<typeof CBox> | null>(null)\n\nconst attrs = useAttrs()\n\nconst rawProps = defineProps<CenterProps>()\n\nconst props = useComponentProps({\n component: 'CCenter',\n defaultProps: {},\n props: rawProps,\n})\n\nconst knownProps = [\n 'classNames',\n 'className',\n 'style',\n 'styles',\n 'unstyled',\n 'vars',\n 'inline',\n 'mod',\n 'attributes',\n]\n\nconst getStyles = useStyles<CenterFactory>({\n name: 'Center',\n props: { ...props.value, ...attrs } as CenterProps,\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})\n\nconst modList = computed(() => [{ inline: props.value.inline }])\n\nconst rootAttrs = computed(() => getStyles('root'))\n\nconst mergedAttrs = computed(() => {\n const others: Record<string, any> = {}\n const propsValue = props.value\n Object.keys(propsValue).forEach((key) => {\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 ...(modList.value || []),\n ]\n return { ...others, mod: mergedMod, ...rootAttrs.value }\n})\n\ndefineExpose({\n root: computed(() => _root.value?.root ?? null),\n})\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBA,MAAM,SAAA,GAAA,IAAA,IAAA,CAA8C,IAAI;EAExD,MAAM,SAAA,GAAA,IAAA,SAAA,CAAiB;EAEvB,MAAM,WAAW;EAEjB,MAAM,QAAQ,4BAAA,kBAAkB;GAC9B,WAAW;GACX,cAAc,CAAC;GACf,OAAO;EACT,CAAC;EAED,MAAM,aAAa;GACjB;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;EACF;EAEA,MAAM,YAAY,mBAAA,UAAyB;GACzC,MAAM;GACN,OAAO;IAAE,GAAG,MAAM;IAAO,GAAG;GAAM;GAClC,SAAA,sBAAA;GACA,WAAW,MAAM,MAAM;GACvB,OAAO,MAAM,MAAM;GACnB,YAAY,MAAM,MAAM;GACxB,QAAQ,MAAM,MAAM;GACpB,UAAU,MAAM,MAAM;GACtB,YAAY,MAAM,MAAM;GACxB,MAAM,MAAM,MAAM;EACpB,CAAC;EAED,MAAM,WAAA,GAAA,IAAA,SAAA,OAAyB,CAAC,EAAE,QAAQ,MAAM,MAAM,OAAO,CAAC,CAAC;EAE/D,MAAM,aAAA,GAAA,IAAA,SAAA,OAA2B,UAAU,MAAM,CAAC;EAElD,MAAM,eAAA,GAAA,IAAA,SAAA,OAA6B;GACjC,MAAM,SAA8B,CAAC;GACrC,MAAM,aAAa,MAAM;GACzB,OAAO,KAAK,UAAU,CAAC,CAAC,SAAS,QAAQ;IACvC,IAAI,CAAC,WAAW,SAAS,GAAG,GAC1B,OAAO,OAAO,WAAW;GAE7B,CAAC;GACD,MAAM,UAAU,MAAM,MAAM;GAC5B,MAAM,YAAY,CAChB,GAAI,MAAM,QAAQ,OAAO,IAAI,UAAU,CAAC,OAAO,CAAC,CAAC,OAAO,OAAO,GAC/D,GAAI,QAAQ,SAAS,CAAC,CACxB;GACA,OAAO;IAAE,GAAG;IAAQ,KAAK;IAAW,GAAG,UAAU;GAAM;EACzD,CAAC;EAED,SAAa,EACX,OAAA,GAAA,IAAA,SAAA,OAAqB,MAAM,OAAO,QAAQ,IAAI,EAChD,CAAC;;;;;;;;;;;;;;;;;;;;;;;mDAxES,OAAA,UAAA,GAAA,IAAA,WAAA,CAAA,EAFD,KAAI,QAAO,GAAS,OAAA,WAAW,GAAA;kCAC5B,EAAA,GAAA,IAAA,WAAA,CAAA,KAAA,QAAA,SAAA,CAAA,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"center.module.cjs","names":[],"sources":["../../../src/components/center/center.module.css"],"sourcesContent":[".root {\n display: flex;\n align-items: center;\n justify-content: center;\n\n &:where([data-inline]) {\n display: inline-flex;\n }\n}\n"],"mappings":";;AAAA,IAAA,wBAAe,EAAC,QAAO,aAAY"}
|
|
@@ -0,0 +1,13 @@
|
|
|
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_center_module = require("./center.module.cjs");
|
|
5
|
+
const require_center = require("./center.cjs");
|
|
6
|
+
//#region packages/@cck-ui/core/src/components/center/index.ts
|
|
7
|
+
const CenterWithStatic = require_statics.withPropsFactory(require_statics.withExtend(require_statics.withClasses(require_center.default, require_center_module.default)));
|
|
8
|
+
const CCenter = require_install.withInstall(CenterWithStatic);
|
|
9
|
+
//#endregion
|
|
10
|
+
exports.CCenter = CCenter;
|
|
11
|
+
exports.default = CCenter;
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","names":["withPropsFactory","withExtend","withClasses","Center","classes","withInstall"],"sources":["../../../src/components/center/index.ts"],"sourcesContent":["import {\n SFCWithInstallAndClasses,\n withClasses,\n withExtend,\n withInstall,\n withPropsFactory,\n} from '../../core'\nimport Center from './center.vue'\nimport classes from './center.module.css'\n\nconst CenterWithStatic = withPropsFactory(withExtend(withClasses(Center, classes)))\n\nexport const CCenter: SFCWithInstallAndClasses<typeof Center, typeof classes> =\n withInstall(CenterWithStatic)\n\nexport default CCenter\n\nexport * from './center.types'\n"],"mappings":";;;;;;AAUA,MAAM,mBAAmBA,gBAAAA,iBAAiBC,gBAAAA,WAAWC,gBAAAA,YAAYC,eAAAA,SAAQC,sBAAAA,OAAO,CAAC,CAAC;AAElF,MAAa,UACXC,gBAAAA,YAAY,gBAAgB"}
|
|
@@ -414,7 +414,7 @@ const _sfc_main = /*@__PURE__*/ (0, vue.defineComponent)({
|
|
|
414
414
|
const containerAttrs = (0, vue.computed)(() => getStyles("container"));
|
|
415
415
|
const gridStyle = require_grid_custom.useGridCustomStyle({
|
|
416
416
|
selector: responsiveClassname,
|
|
417
|
-
...props
|
|
417
|
+
...props.value
|
|
418
418
|
});
|
|
419
419
|
const currentStyleKey = (0, vue.ref)(null);
|
|
420
420
|
(0, vue.watchEffect)(() => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grid.cjs","names":[],"sources":["../../../src/components/grid/grid.vue"],"sourcesContent":["<template>\n <c-box ref=\"_container\" v-if=\"type === 'container' && breakpoints\" v-bind=\"containerAttrs\">\n <c-box ref=\"_root\" v-bind=\"mergedRootAttrs\">\n <c-box ref=\"_inner\" v-bind=\"innerAttrs\">\n <slot />\n </c-box>\n </c-box>\n </c-box>\n <template v-else>\n <c-box ref=\"_root\" v-bind=\"mergedRootAttrs\">\n <c-box ref=\"_inner\" v-bind=\"innerAttrs\">\n <slot />\n </c-box>\n </c-box>\n </template>\n</template>\n\n<script setup lang=\"ts\">\nimport { computed, onUnmounted, provide, ref, useAttrs, watchEffect } from 'vue'\nimport {\n CBox,\n isNumberLike,\n responsiveStyleManager,\n useComponentProps,\n useRandomClassName,\n useStyles,\n} from '../../core'\nimport { useGridCustomStyle } from './grid-custom'\nimport { DEFAULT_COLUMNS, GRID_CONTEXT_KEY } from './grid.constants'\nimport { GridContextValue } from './grid.context'\nimport type { GridFactory, GridProps } from './grid.types'\nimport classes from './grid.module.css'\nimport { varsResolver } from './grid.utils'\n\ndefineOptions({\n name: 'CGrid',\n})\n\nconst _container = ref<InstanceType<typeof CBox> | null>(null)\nconst _root = ref<InstanceType<typeof CBox> | null>(null)\nconst _inner = ref<InstanceType<typeof CBox> | null>(null)\n\nconst attrs = useAttrs()\n\nconst rawProps = defineProps<GridProps>()\n\nconst props = useComponentProps({\n component: 'CGrid',\n defaultProps: {\n columns: DEFAULT_COLUMNS,\n gap: 'md',\n },\n props: rawProps,\n})\n\nconst knownProps = [\n 'classNames',\n 'className',\n 'style',\n 'styles',\n 'unstyled',\n 'vars',\n 'grow',\n 'gap',\n 'rowGap',\n 'columnGap',\n 'columns',\n 'align',\n 'justify',\n 'breakpoints',\n 'type',\n 'attributes',\n]\n\nconst getStyles = useStyles<GridFactory>({\n name: 'Grid',\n classes,\n props: { ...props.value, ...attrs } as GridProps,\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 responsiveClassname = useRandomClassName()\n\nconst rootAttrs = computed(() => getStyles('root', { className: responsiveClassname }))\n\nconst mergedRootAttrs = computed(() => {\n const others: Record<string, any> = {}\n const propsValue = props.value\n Object.keys(propsValue).forEach((key) => {\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 = [...(Array.isArray(userMod) ? userMod : [userMod].filter(Boolean))]\n return { ...others, mod: mergedMod, ...rootAttrs.value }\n})\n\nconst innerAttrs = computed(() => getStyles('inner'))\n\nconst containerAttrs = computed(() => getStyles('container'))\n\nconst gridStyle = useGridCustomStyle({\n selector: responsiveClassname,\n ...props,\n})\n\nconst currentStyleKey = ref<string | null>(null)\nwatchEffect(() => {\n const cssText = gridStyle.value.queryStylesString\n if (cssText) {\n const newKey = responsiveStyleManager.register(cssText)\n if (currentStyleKey.value && currentStyleKey.value !== newKey) {\n responsiveStyleManager.unregister(currentStyleKey.value)\n }\n currentStyleKey.value = newKey\n } else if (currentStyleKey.value) {\n responsiveStyleManager.unregister(currentStyleKey.value)\n currentStyleKey.value = null\n }\n})\nonUnmounted(() => {\n if (currentStyleKey.value) {\n responsiveStyleManager.unregister(currentStyleKey.value)\n }\n})\n\nconst _breakpoints = computed(() => props.value.breakpoints)\nconst _columns = computed(() => {\n if (!isNumberLike(props.value.columns)) {\n console.warn(\n `[C-Grid] columns should be number or number-like string, got ${props.value.columns}. Fallback to default columns ${DEFAULT_COLUMNS}.`\n )\n return DEFAULT_COLUMNS\n }\n\n return Number(props.value.columns)\n})\nconst _grow = computed(() => props.value.grow)\nconst _type = computed(() => props.value.type)\n\nconst context: GridContextValue = {\n getStyles,\n get breakpoints() {\n return _breakpoints.value\n },\n get columns() {\n return _columns.value\n },\n get grow() {\n return _grow.value\n },\n get type() {\n return _type.value\n },\n}\n\nprovide(GRID_CONTEXT_KEY, context)\n\ndefineExpose({\n container: computed(() => _container.value?.root ?? null),\n root: computed(() => _root.value?.root ?? null),\n inner: computed(() => _inner.value?.root ?? null),\n})\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsCA,MAAM,cAAA,GAAA,IAAA,IAAA,CAAmD,IAAI;EAC7D,MAAM,SAAA,GAAA,IAAA,IAAA,CAA8C,IAAI;EACxD,MAAM,UAAA,GAAA,IAAA,IAAA,CAA+C,IAAI;EAEzD,MAAM,SAAA,GAAA,IAAA,SAAA,CAAiB;EAEvB,MAAM,WAAW;EAEjB,MAAM,QAAQ,4BAAA,kBAAkB;GAC9B,WAAW;GACX,cAAc;IACZ,SAAA;IACA,KAAK;GACP;GACA,OAAO;EACT,CAAC;EAED,MAAM,aAAa;GACjB;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;EACF;EAEA,MAAM,YAAY,mBAAA,UAAuB;GACvC,MAAM;GACN,SAAA,oBAAA;GACA,OAAO;IAAE,GAAG,MAAM;IAAO,GAAG;GAAM;GAClC,WAAW,MAAM,MAAM;GACvB,OAAO,MAAM,MAAM;GACnB,YAAY,MAAM,MAAM;GACxB,QAAQ,MAAM,MAAM;GACpB,UAAU,MAAM,MAAM;GACtB,YAAY,MAAM,MAAM;GACxB,MAAM,MAAM,MAAM;GAClB,cAAA,mBAAA;EACF,CAAC;EAED,MAAM,sBAAsB,6BAAA,mBAAmB;EAE/C,MAAM,aAAA,GAAA,IAAA,SAAA,OAA2B,UAAU,QAAQ,EAAE,WAAW,oBAAoB,CAAC,CAAC;EAEtF,MAAM,mBAAA,GAAA,IAAA,SAAA,OAAiC;GACrC,MAAM,SAA8B,CAAC;GACrC,MAAM,aAAa,MAAM;GACzB,OAAO,KAAK,UAAU,CAAC,CAAC,SAAS,QAAQ;IACvC,IAAI,CAAC,WAAW,SAAS,GAAG,GAC1B,OAAO,OAAO,WAAW;GAE7B,CAAC;GACD,MAAM,UAAU,MAAM,MAAM;GAC5B,MAAM,YAAY,CAAC,GAAI,MAAM,QAAQ,OAAO,IAAI,UAAU,CAAC,OAAO,CAAC,CAAC,OAAO,OAAO,CAAE;GACpF,OAAO;IAAE,GAAG;IAAQ,KAAK;IAAW,GAAG,UAAU;GAAM;EACzD,CAAC;EAED,MAAM,cAAA,GAAA,IAAA,SAAA,OAA4B,UAAU,OAAO,CAAC;EAEpD,MAAM,kBAAA,GAAA,IAAA,SAAA,OAAgC,UAAU,WAAW,CAAC;EAE5D,MAAM,YAAY,oBAAA,mBAAmB;GACnC,UAAU;GACV,GAAG;
|
|
1
|
+
{"version":3,"file":"grid.cjs","names":[],"sources":["../../../src/components/grid/grid.vue"],"sourcesContent":["<template>\n <c-box ref=\"_container\" v-if=\"type === 'container' && breakpoints\" v-bind=\"containerAttrs\">\n <c-box ref=\"_root\" v-bind=\"mergedRootAttrs\">\n <c-box ref=\"_inner\" v-bind=\"innerAttrs\">\n <slot />\n </c-box>\n </c-box>\n </c-box>\n <template v-else>\n <c-box ref=\"_root\" v-bind=\"mergedRootAttrs\">\n <c-box ref=\"_inner\" v-bind=\"innerAttrs\">\n <slot />\n </c-box>\n </c-box>\n </template>\n</template>\n\n<script setup lang=\"ts\">\nimport { computed, onUnmounted, provide, ref, useAttrs, watchEffect } from 'vue'\nimport {\n CBox,\n isNumberLike,\n responsiveStyleManager,\n useComponentProps,\n useRandomClassName,\n useStyles,\n} from '../../core'\nimport { useGridCustomStyle } from './grid-custom'\nimport { DEFAULT_COLUMNS, GRID_CONTEXT_KEY } from './grid.constants'\nimport { GridContextValue } from './grid.context'\nimport type { GridFactory, GridProps } from './grid.types'\nimport classes from './grid.module.css'\nimport { varsResolver } from './grid.utils'\n\ndefineOptions({\n name: 'CGrid',\n})\n\nconst _container = ref<InstanceType<typeof CBox> | null>(null)\nconst _root = ref<InstanceType<typeof CBox> | null>(null)\nconst _inner = ref<InstanceType<typeof CBox> | null>(null)\n\nconst attrs = useAttrs()\n\nconst rawProps = defineProps<GridProps>()\n\nconst props = useComponentProps({\n component: 'CGrid',\n defaultProps: {\n columns: DEFAULT_COLUMNS,\n gap: 'md',\n },\n props: rawProps,\n})\n\nconst knownProps = [\n 'classNames',\n 'className',\n 'style',\n 'styles',\n 'unstyled',\n 'vars',\n 'grow',\n 'gap',\n 'rowGap',\n 'columnGap',\n 'columns',\n 'align',\n 'justify',\n 'breakpoints',\n 'type',\n 'attributes',\n]\n\nconst getStyles = useStyles<GridFactory>({\n name: 'Grid',\n classes,\n props: { ...props.value, ...attrs } as GridProps,\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 responsiveClassname = useRandomClassName()\n\nconst rootAttrs = computed(() => getStyles('root', { className: responsiveClassname }))\n\nconst mergedRootAttrs = computed(() => {\n const others: Record<string, any> = {}\n const propsValue = props.value\n Object.keys(propsValue).forEach((key) => {\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 = [...(Array.isArray(userMod) ? userMod : [userMod].filter(Boolean))]\n return { ...others, mod: mergedMod, ...rootAttrs.value }\n})\n\nconst innerAttrs = computed(() => getStyles('inner'))\n\nconst containerAttrs = computed(() => getStyles('container'))\n\nconst gridStyle = useGridCustomStyle({\n selector: responsiveClassname,\n ...props.value,\n})\n\nconst currentStyleKey = ref<string | null>(null)\nwatchEffect(() => {\n const cssText = gridStyle.value.queryStylesString\n if (cssText) {\n const newKey = responsiveStyleManager.register(cssText)\n if (currentStyleKey.value && currentStyleKey.value !== newKey) {\n responsiveStyleManager.unregister(currentStyleKey.value)\n }\n currentStyleKey.value = newKey\n } else if (currentStyleKey.value) {\n responsiveStyleManager.unregister(currentStyleKey.value)\n currentStyleKey.value = null\n }\n})\nonUnmounted(() => {\n if (currentStyleKey.value) {\n responsiveStyleManager.unregister(currentStyleKey.value)\n }\n})\n\nconst _breakpoints = computed(() => props.value.breakpoints)\nconst _columns = computed(() => {\n if (!isNumberLike(props.value.columns)) {\n console.warn(\n `[C-Grid] columns should be number or number-like string, got ${props.value.columns}. Fallback to default columns ${DEFAULT_COLUMNS}.`\n )\n return DEFAULT_COLUMNS\n }\n\n return Number(props.value.columns)\n})\nconst _grow = computed(() => props.value.grow)\nconst _type = computed(() => props.value.type)\n\nconst context: GridContextValue = {\n getStyles,\n get breakpoints() {\n return _breakpoints.value\n },\n get columns() {\n return _columns.value\n },\n get grow() {\n return _grow.value\n },\n get type() {\n return _type.value\n },\n}\n\nprovide(GRID_CONTEXT_KEY, context)\n\ndefineExpose({\n container: computed(() => _container.value?.root ?? null),\n root: computed(() => _root.value?.root ?? null),\n inner: computed(() => _inner.value?.root ?? null),\n})\n</script>\n"],"mappings":"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"}
|
|
@@ -389,7 +389,7 @@ const _sfc_main = /*@__PURE__*/ (0, vue.defineComponent)({
|
|
|
389
389
|
const containerAttrs = (0, vue.computed)(() => getStyles("container"));
|
|
390
390
|
const gridStyle = require_simple_grid_custom.useSimpleGridStyle({
|
|
391
391
|
selector: responsiveClassname,
|
|
392
|
-
...props
|
|
392
|
+
...props.value
|
|
393
393
|
});
|
|
394
394
|
const currentStyleKey = (0, vue.ref)(null);
|
|
395
395
|
(0, vue.watchEffect)(() => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"simple-grid.cjs","names":[],"sources":["../../../src/components/simple-grid/simple-grid.vue"],"sourcesContent":["<template>\n <c-box ref=\"_container\" v-if=\"type === 'container'\" v-bind=\"containerAttrs\">\n <c-box ref=\"_root\" v-bind=\"mergedRootAttrs\" :data-auto-cols=\"autoColsAttr\">\n <slot />\n </c-box>\n </c-box>\n <template v-else>\n <c-box ref=\"_root\" v-bind=\"mergedRootAttrs\" :data-auto-cols=\"autoColsAttr\">\n <slot />\n </c-box>\n </template>\n</template>\n\n<script setup lang=\"ts\">\nimport { computed, onUnmounted, ref, useAttrs, watchEffect } from 'vue'\nimport {\n CBox,\n responsiveStyleManager,\n useComponentProps,\n useRandomClassName,\n useStyles,\n} from '../../core'\nimport type { SimpleGridFactory, SimpleGridProps } from './simple-grid.types'\nimport classes from './simple-grid.module.css'\nimport { useSimpleGridStyle } from './simple-grid-custom'\n\ndefineOptions({\n name: 'CSimpleGrid',\n})\n\nconst _container = ref<InstanceType<typeof CBox> | null>(null)\nconst _root = ref<InstanceType<typeof CBox> | null>(null)\n\nconst attrs = useAttrs()\n\nconst rawProps = defineProps<SimpleGridProps>()\n\nconst props = useComponentProps({\n component: 'CSimpleGrid',\n defaultProps: {},\n props: rawProps,\n})\n\nconst knownProps = [\n 'classNames',\n 'className',\n 'style',\n 'styles',\n 'unstyled',\n 'vars',\n 'cols',\n 'verticalSpacing',\n 'spacing',\n 'type',\n 'minColWidth',\n 'autoFlow',\n 'autoRows',\n 'attributes',\n]\n\nconst getStyles = useStyles<SimpleGridFactory>({\n name: 'SimpleGrid',\n classes,\n props: { ...props.value, ...attrs } as SimpleGridProps,\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})\n\nconst responsiveClassname = useRandomClassName()\n\nconst autoColsAttr =\n props.value.minColWidth !== undefined ? props.value.autoFlow || 'auto-fill' : undefined\n\nconst rootAttrs = computed(() => getStyles('root', { className: responsiveClassname }))\nconst mergedRootAttrs = 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 = [...(Array.isArray(userMod) ? userMod : [userMod].filter(Boolean))]\n return { ...others, ...rootAttrs.value }\n})\n\nconst containerAttrs = computed(() => getStyles('container'))\n\nconst gridStyle = useSimpleGridStyle({\n selector: responsiveClassname,\n ...props,\n})\n\nconst currentStyleKey = ref<string | null>(null)\nwatchEffect(() => {\n const cssText = gridStyle.value.queryStylesString\n if (cssText) {\n const newKey = responsiveStyleManager.register(cssText)\n if (currentStyleKey.value && currentStyleKey.value !== newKey) {\n responsiveStyleManager.unregister(currentStyleKey.value)\n }\n currentStyleKey.value = newKey\n } else if (currentStyleKey.value) {\n responsiveStyleManager.unregister(currentStyleKey.value)\n currentStyleKey.value = null\n }\n})\nonUnmounted(() => {\n if (currentStyleKey.value) {\n responsiveStyleManager.unregister(currentStyleKey.value)\n }\n})\n\ndefineExpose({\n root: computed(() => _root.value?.root ?? null),\n container: computed(() => _container.value?.root ?? null),\n})\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8BA,MAAM,cAAA,GAAA,IAAA,IAAA,CAAmD,IAAI;EAC7D,MAAM,SAAA,GAAA,IAAA,IAAA,CAA8C,IAAI;EAExD,MAAM,SAAA,GAAA,IAAA,SAAA,CAAiB;EAEvB,MAAM,WAAW;EAEjB,MAAM,QAAQ,4BAAA,kBAAkB;GAC9B,WAAW;GACX,cAAc,CAAC;GACf,OAAO;EACT,CAAC;EAED,MAAM,aAAa;GACjB;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACA;EACF;EAEA,MAAM,YAAY,mBAAA,UAA6B;GAC7C,MAAM;GACN,SAAA,2BAAA;GACA,OAAO;IAAE,GAAG,MAAM;IAAO,GAAG;GAAM;GAClC,WAAW,MAAM,MAAM;GACvB,OAAO,MAAM,MAAM;GACnB,YAAY,MAAM,MAAM;GACxB,QAAQ,MAAM,MAAM;GACpB,UAAU,MAAM,MAAM;GACtB,YAAY,MAAM,MAAM;GACxB,MAAM,MAAM,MAAM;EACpB,CAAC;EAED,MAAM,sBAAsB,6BAAA,mBAAmB;EAE/C,MAAM,eACJ,MAAM,MAAM,gBAAgB,KAAA,IAAY,MAAM,MAAM,YAAY,cAAc,KAAA;EAEhF,MAAM,aAAA,GAAA,IAAA,SAAA,OAA2B,UAAU,QAAQ,EAAE,WAAW,oBAAoB,CAAC,CAAC;EACtF,MAAM,mBAAA,GAAA,IAAA,SAAA,OAAiC;GACrC,MAAM,SAA8B,CAAC;GACrC,MAAM,aAAa,MAAM;GACzB,KAAK,MAAM,OAAO,YAChB,IAAI,CAAC,WAAW,SAAS,GAAG,GAC1B,OAAO,OAAO,WAAW;GAG7B,MAAM,UAAU,MAAM,MAAM;GACV,CAAC,GAAI,MAAM,QAAQ,OAAO,IAAI,UAAU,CAAC,OAAO,CAAC,CAAC,OAAO,OAAO,CAAE;GACpF,OAAO;IAAE,GAAG;IAAQ,GAAG,UAAU;GAAM;EACzC,CAAC;EAED,MAAM,kBAAA,GAAA,IAAA,SAAA,OAAgC,UAAU,WAAW,CAAC;EAE5D,MAAM,YAAY,2BAAA,mBAAmB;GACnC,UAAU;GACV,GAAG;
|
|
1
|
+
{"version":3,"file":"simple-grid.cjs","names":[],"sources":["../../../src/components/simple-grid/simple-grid.vue"],"sourcesContent":["<template>\n <c-box ref=\"_container\" v-if=\"type === 'container'\" v-bind=\"containerAttrs\">\n <c-box ref=\"_root\" v-bind=\"mergedRootAttrs\" :data-auto-cols=\"autoColsAttr\">\n <slot />\n </c-box>\n </c-box>\n <template v-else>\n <c-box ref=\"_root\" v-bind=\"mergedRootAttrs\" :data-auto-cols=\"autoColsAttr\">\n <slot />\n </c-box>\n </template>\n</template>\n\n<script setup lang=\"ts\">\nimport { computed, onUnmounted, ref, useAttrs, watchEffect } from 'vue'\nimport {\n CBox,\n responsiveStyleManager,\n useComponentProps,\n useRandomClassName,\n useStyles,\n} from '../../core'\nimport type { SimpleGridFactory, SimpleGridProps } from './simple-grid.types'\nimport classes from './simple-grid.module.css'\nimport { useSimpleGridStyle } from './simple-grid-custom'\n\ndefineOptions({\n name: 'CSimpleGrid',\n})\n\nconst _container = ref<InstanceType<typeof CBox> | null>(null)\nconst _root = ref<InstanceType<typeof CBox> | null>(null)\n\nconst attrs = useAttrs()\n\nconst rawProps = defineProps<SimpleGridProps>()\n\nconst props = useComponentProps({\n component: 'CSimpleGrid',\n defaultProps: {},\n props: rawProps,\n})\n\nconst knownProps = [\n 'classNames',\n 'className',\n 'style',\n 'styles',\n 'unstyled',\n 'vars',\n 'cols',\n 'verticalSpacing',\n 'spacing',\n 'type',\n 'minColWidth',\n 'autoFlow',\n 'autoRows',\n 'attributes',\n]\n\nconst getStyles = useStyles<SimpleGridFactory>({\n name: 'SimpleGrid',\n classes,\n props: { ...props.value, ...attrs } as SimpleGridProps,\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})\n\nconst responsiveClassname = useRandomClassName()\n\nconst autoColsAttr =\n props.value.minColWidth !== undefined ? props.value.autoFlow || 'auto-fill' : undefined\n\nconst rootAttrs = computed(() => getStyles('root', { className: responsiveClassname }))\nconst mergedRootAttrs = 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 = [...(Array.isArray(userMod) ? userMod : [userMod].filter(Boolean))]\n return { ...others, ...rootAttrs.value }\n})\n\nconst containerAttrs = computed(() => getStyles('container'))\n\nconst gridStyle = useSimpleGridStyle({\n selector: responsiveClassname,\n ...props.value,\n})\n\nconst currentStyleKey = ref<string | null>(null)\nwatchEffect(() => {\n const cssText = gridStyle.value.queryStylesString\n if (cssText) {\n const newKey = responsiveStyleManager.register(cssText)\n if (currentStyleKey.value && currentStyleKey.value !== newKey) {\n responsiveStyleManager.unregister(currentStyleKey.value)\n }\n currentStyleKey.value = newKey\n } else if (currentStyleKey.value) {\n responsiveStyleManager.unregister(currentStyleKey.value)\n currentStyleKey.value = null\n }\n})\nonUnmounted(() => {\n if (currentStyleKey.value) {\n responsiveStyleManager.unregister(currentStyleKey.value)\n }\n})\n\ndefineExpose({\n root: computed(() => _root.value?.root ?? null),\n container: computed(() => _container.value?.root ?? null),\n})\n</script>\n"],"mappings":"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"}
|
package/cjs/index.cjs
CHANGED
|
@@ -54,35 +54,37 @@ const require_resolve_class_names = require("./core/styles-api/use-styles/get-cl
|
|
|
54
54
|
const require_resolve_styles = require("./core/styles-api/use-styles/get-style/resolve-styles/resolve-styles.cjs");
|
|
55
55
|
const require_get_global_class_names = require("./core/styles-api/use-styles/get-class-name/get-global-class-names/get-global-class-names.cjs");
|
|
56
56
|
const require_use_styles = require("./core/styles-api/use-styles/use-styles.cjs");
|
|
57
|
-
const require_index$3 = require("./components/
|
|
58
|
-
const require_index$4 = require("./components/
|
|
57
|
+
const require_index$3 = require("./components/aspect-ratio/index.cjs");
|
|
58
|
+
const require_index$4 = require("./components/unstyled-button/index.cjs");
|
|
59
|
+
const require_index$5 = require("./components/loader/index.cjs");
|
|
59
60
|
const require_transitions = require("./components/transition/transitions.cjs");
|
|
60
61
|
const require_get_transition_props = require("./components/transition/get-transition-props/get-transition-props.cjs");
|
|
61
|
-
const require_index$
|
|
62
|
-
const require_index$
|
|
63
|
-
const require_index$
|
|
64
|
-
const require_index$
|
|
65
|
-
const require_index$
|
|
66
|
-
const require_index$
|
|
67
|
-
const require_index$
|
|
62
|
+
const require_index$6 = require("./components/transition/index.cjs");
|
|
63
|
+
const require_index$7 = require("./components/button/index.cjs");
|
|
64
|
+
const require_index$8 = require("./components/center/index.cjs");
|
|
65
|
+
const require_index$9 = require("./components/grid/index.cjs");
|
|
66
|
+
const require_index$10 = require("./components/group/index.cjs");
|
|
67
|
+
const require_index$11 = require("./components/simple-grid/index.cjs");
|
|
68
|
+
const require_index$12 = require("./components/stack/index.cjs");
|
|
69
|
+
const require_index$13 = require("./components/text/index.cjs");
|
|
68
70
|
let _vue_shared = require("@vue/shared");
|
|
69
71
|
//#region packages/@cck-ui/core/src/index.ts
|
|
70
72
|
const INSTALLED_KEY = Symbol("INSTALLED_KEY");
|
|
71
73
|
const components = [
|
|
72
74
|
require_index$1.CckConfigProvider,
|
|
73
75
|
require_index$2.CBox,
|
|
74
|
-
require_index$
|
|
75
|
-
require_index$
|
|
76
|
-
require_index$
|
|
77
|
-
require_index$
|
|
78
|
-
require_index$
|
|
79
|
-
require_index$
|
|
80
|
-
require_index$
|
|
81
|
-
require_index$
|
|
82
|
-
require_index$
|
|
83
|
-
require_index$
|
|
84
|
-
require_index$
|
|
85
|
-
require_index$
|
|
76
|
+
require_index$7.CButton,
|
|
77
|
+
require_index$7.CButtonGroup,
|
|
78
|
+
require_index$7.CButtonGroupSection,
|
|
79
|
+
require_index$9.CGrid,
|
|
80
|
+
require_index$9.CCol,
|
|
81
|
+
require_index$10.CGroup,
|
|
82
|
+
require_index$5.CLoader,
|
|
83
|
+
require_index$11.CSimpleGrid,
|
|
84
|
+
require_index$12.CStack,
|
|
85
|
+
require_index$13.CText,
|
|
86
|
+
require_index$6.CTransition,
|
|
87
|
+
require_index$4.UnstyledButton
|
|
86
88
|
];
|
|
87
89
|
const CckUI = { install(app) {
|
|
88
90
|
if (app[INSTALLED_KEY]) return;
|
|
@@ -92,21 +94,23 @@ const CckUI = { install(app) {
|
|
|
92
94
|
});
|
|
93
95
|
} };
|
|
94
96
|
//#endregion
|
|
97
|
+
exports.CAspectRatio = require_index$3.CAspectRatio;
|
|
95
98
|
exports.CBox = require_index$2.CBox;
|
|
96
|
-
exports.CButton = require_index$
|
|
97
|
-
exports.CButtonGroup = require_index$
|
|
98
|
-
exports.CButtonGroupSection = require_index$
|
|
99
|
+
exports.CButton = require_index$7.CButton;
|
|
100
|
+
exports.CButtonGroup = require_index$7.CButtonGroup;
|
|
101
|
+
exports.CButtonGroupSection = require_index$7.CButtonGroupSection;
|
|
99
102
|
exports.CCK_TRANSITIONS = require_transitions.transitions;
|
|
100
|
-
exports.
|
|
101
|
-
exports.
|
|
102
|
-
exports.
|
|
103
|
-
exports.
|
|
104
|
-
exports.
|
|
103
|
+
exports.CCenter = require_index$8.CCenter;
|
|
104
|
+
exports.CCol = require_index$9.CCol;
|
|
105
|
+
exports.CDefaultLoaders = require_index$5.CDefaultLoaders;
|
|
106
|
+
exports.CGrid = require_index$9.CGrid;
|
|
107
|
+
exports.CGroup = require_index$10.CGroup;
|
|
108
|
+
exports.CLoader = require_index$5.CLoader;
|
|
105
109
|
exports.CONFIG_KEY = require_config_provider_types.CONFIG_KEY;
|
|
106
|
-
exports.CSimpleGrid = require_index$
|
|
107
|
-
exports.CStack = require_index$
|
|
108
|
-
exports.CText = require_index$
|
|
109
|
-
exports.CTransition = require_index$
|
|
110
|
+
exports.CSimpleGrid = require_index$11.CSimpleGrid;
|
|
111
|
+
exports.CStack = require_index$12.CStack;
|
|
112
|
+
exports.CText = require_index$13.CText;
|
|
113
|
+
exports.CTransition = require_index$6.CTransition;
|
|
110
114
|
exports.CckConfigProvider = require_index$1.CckConfigProvider;
|
|
111
115
|
exports.CckUI = CckUI;
|
|
112
116
|
exports.default = CckUI;
|
|
@@ -114,7 +118,7 @@ exports.DEFAULT_THEME = require_default_theme.DEFAULT_THEME;
|
|
|
114
118
|
exports.FOCUS_CLASS_NAMES = require_get_global_class_names.FOCUS_CLASS_NAMES;
|
|
115
119
|
exports.STYLE_PROPS_DATA = require_style_props_data.STYLE_PROPS_DATA;
|
|
116
120
|
exports.THEME_KEY = require_config_provider_types.THEME_KEY;
|
|
117
|
-
exports.UnstyledButton = require_index$
|
|
121
|
+
exports.UnstyledButton = require_index$4.UnstyledButton;
|
|
118
122
|
exports.alpha = require_rgba.alpha;
|
|
119
123
|
exports.camelToKebabCase = require_camel_to_kebab_case.camelToKebabCase;
|
|
120
124
|
exports.colorsTuple = require_colors_tuple.colorsTuple;
|
package/cjs/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","names":["CckConfigProvider","CBox","CButton","CButtonGroup","CButtonGroupSection","CGrid","CCol","CGroup","CLoader","CSimpleGrid","CStack","CText","CTransition","UnstyledButton"],"sources":["../src/index.ts"],"sourcesContent":["import type { App, Plugin } from 'vue'\nimport {\n CButton,\n CButtonGroup,\n CButtonGroupSection,\n CCol,\n CGrid,\n CGroup,\n CLoader,\n CSimpleGrid,\n CStack,\n CText,\n CTransition,\n UnstyledButton,\n} from './components'\nimport { CckConfigProvider, CBox } from './core'\n\nconst INSTALLED_KEY = Symbol('INSTALLED_KEY')\n\nconst components = [\n CckConfigProvider,\n CBox,\n CButton,\n CButtonGroup,\n CButtonGroupSection,\n CGrid,\n CCol,\n CGroup,\n CLoader,\n CSimpleGrid,\n CStack,\n CText,\n CTransition,\n UnstyledButton,\n]\n\nconst CckUI: Plugin = {\n install(app: App) {\n if ((app as any)[INSTALLED_KEY]) {\n return\n }\n ;(app as any)[INSTALLED_KEY] = true\n components.forEach((c) => {\n if (c.name) {\n app.component(c.name, c)\n }\n })\n },\n}\n\nexport default CckUI\nexport { CckUI }\n\nexport * from './components'\nexport * from './core'\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs","names":["CckConfigProvider","CBox","CButton","CButtonGroup","CButtonGroupSection","CGrid","CCol","CGroup","CLoader","CSimpleGrid","CStack","CText","CTransition","UnstyledButton"],"sources":["../src/index.ts"],"sourcesContent":["import type { App, Plugin } from 'vue'\nimport {\n CButton,\n CButtonGroup,\n CButtonGroupSection,\n CCol,\n CGrid,\n CGroup,\n CLoader,\n CSimpleGrid,\n CStack,\n CText,\n CTransition,\n UnstyledButton,\n} from './components'\nimport { CckConfigProvider, CBox } from './core'\n\nconst INSTALLED_KEY = Symbol('INSTALLED_KEY')\n\nconst components = [\n CckConfigProvider,\n CBox,\n CButton,\n CButtonGroup,\n CButtonGroupSection,\n CGrid,\n CCol,\n CGroup,\n CLoader,\n CSimpleGrid,\n CStack,\n CText,\n CTransition,\n UnstyledButton,\n]\n\nconst CckUI: Plugin = {\n install(app: App) {\n if ((app as any)[INSTALLED_KEY]) {\n return\n }\n ;(app as any)[INSTALLED_KEY] = true\n components.forEach((c) => {\n if (c.name) {\n app.component(c.name, c)\n }\n })\n },\n}\n\nexport default CckUI\nexport { CckUI }\n\nexport * from './components'\nexport * from './core'\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiBA,MAAM,gBAAgB,OAAO,eAAe;AAE5C,MAAM,aAAa;CACjBA,gBAAAA;CACAC,gBAAAA;CACAC,gBAAAA;CACAC,gBAAAA;CACAC,gBAAAA;CACAC,gBAAAA;CACAC,gBAAAA;CACAC,iBAAAA;CACAC,gBAAAA;CACAC,iBAAAA;CACAC,iBAAAA;CACAC,iBAAAA;CACAC,gBAAAA;CACAC,gBAAAA;AACF;AAEA,MAAM,QAAgB,EACpB,QAAQ,KAAU;CAChB,IAAK,IAAY,gBACf;CAED,IAAa,iBAAiB;CAC/B,WAAW,SAAS,MAAM;EACxB,IAAI,EAAE,MACJ,IAAI,UAAU,EAAE,MAAM,CAAC;CAE3B,CAAC;AACH,EACF"}
|