eco-vue-js 0.10.0 → 0.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ActionsBar/WActionsBar.vue.d.ts +9 -3
- package/dist/components/ActionsBar/WActionsBar.vue.d.ts.map +1 -1
- package/dist/components/ActionsBar/WActionsBar.vue.js +2 -4
- package/dist/components/Button/WButton.vue.d.ts +2 -0
- package/dist/components/Button/WButton.vue.d.ts.map +1 -1
- package/dist/components/Button/WButton.vue.js +4 -5
- package/dist/components/Button/WButtonGroup.vue.d.ts.map +1 -1
- package/dist/components/Button/WButtonGroup.vue.js +3 -1
- package/dist/components/Button/types.d.ts +1 -0
- package/dist/components/Button/types.d.ts.map +1 -1
- package/dist/components/FormAsync/WFormAsyncButtonGroup.vue.js +1 -0
- package/dist/components/Input/WInput.vue.d.ts.map +1 -1
- package/dist/components/Input/WInput.vue.js +6 -6
- package/dist/components/Input/components/InputActions.vue.js +1 -1
- package/dist/components/Input/components/InputActionsButton.vue.d.ts.map +1 -1
- package/dist/components/Input/components/InputActionsButton.vue.js +1 -1
- package/package.json +1 -1
- package/tailwind-base/index.ts +2 -0
- package/tailwind-base/plugins/default.ts +27 -29
@@ -1,7 +1,13 @@
|
|
1
|
+
import { VNode } from 'vue';
|
1
2
|
declare function __VLS_template(): {
|
2
|
-
slots: {
|
3
|
-
top
|
4
|
-
|
3
|
+
slots: Readonly<{
|
4
|
+
top?: () => VNode[];
|
5
|
+
filter?: () => VNode[];
|
6
|
+
bottom?: () => VNode[];
|
7
|
+
}> & {
|
8
|
+
top?: () => VNode[];
|
9
|
+
filter?: () => VNode[];
|
10
|
+
bottom?: () => VNode[];
|
5
11
|
};
|
6
12
|
refs: {};
|
7
13
|
attrs: Partial<{}>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WActionsBar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ActionsBar/WActionsBar.vue"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"WActionsBar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ActionsBar/WActionsBar.vue"],"names":[],"mappings":"AA4GA,OAAO,EAAC,KAAK,KAAK,EAA8C,MAAM,KAAK,CAAA;AA8C3E,iBAAS,cAAc;;cATf,MAAM,KAAK,EAAE;iBACV,MAAM,KAAK,EAAE;iBACb,MAAM,KAAK,EAAE;;cAFhB,MAAM,KAAK,EAAE;iBACV,MAAM,KAAK,EAAE;iBACb,MAAM,KAAK,EAAE;;;WA4KV,OAAO,IAA6B;EAEjD;AAeD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,+QAKnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAKpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
@@ -24,9 +24,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
24
24
|
isOpen.value = false;
|
25
25
|
};
|
26
26
|
const slots = useSlots();
|
27
|
-
const
|
28
|
-
const hasFilter = computed(() => !!slots.filter?.()?.length);
|
29
|
-
const hasBottom = computed(() => !!slots.bottom?.()?.length);
|
27
|
+
const hasFilter = computed(() => !!slots.filter);
|
30
28
|
onUnmounted(() => {
|
31
29
|
closeModal?.();
|
32
30
|
closeModal = null;
|
@@ -61,7 +59,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
61
59
|
])) : createCommentVNode("", true),
|
62
60
|
createElementVNode("div", _hoisted_4, [
|
63
61
|
renderSlot(_ctx.$slots, "top"),
|
64
|
-
|
62
|
+
_ctx.$slots.top && (hasFilter.value || unref(slots).bottom) ? (openBlock(), createElementBlock("div", _hoisted_5)) : createCommentVNode("", true),
|
65
63
|
hasFilter.value ? (openBlock(), createBlock(_sfc_main$1, {
|
66
64
|
key: 1,
|
67
65
|
title: "Filters",
|
@@ -11,6 +11,7 @@ interface Props extends Partial<LinkProps> {
|
|
11
11
|
target?: '_self' | '_blank' | '_parent' | '_top';
|
12
12
|
minimize?: boolean;
|
13
13
|
join?: boolean;
|
14
|
+
semanticTypeMap?: Partial<Record<SemanticType, string>>;
|
14
15
|
}
|
15
16
|
declare function __VLS_template(): {
|
16
17
|
slots: {
|
@@ -31,6 +32,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
31
32
|
semanticType: SemanticType;
|
32
33
|
target: "_self" | "_blank" | "_parent" | "_top";
|
33
34
|
href: string;
|
35
|
+
semanticTypeMap: Partial<Record<SemanticType, string>>;
|
34
36
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
35
37
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
36
38
|
export default _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WButton.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Button/WButton.vue"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"WButton.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Button/WButton.vue"],"names":[],"mappings":"AAkGA,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,eAAe,CAAA;AAM5C,OAAO,EAAC,YAAY,EAAC,MAAM,sBAAsB,CAAA;AAMjD,UAAU,KAAM,SAAQ,OAAO,CAAC,SAAS,CAAC;IACxC,YAAY,CAAC,EAAE,YAAY,CAAA;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,GAAG,CAAC,EAAE,GAAG,GAAG,QAAQ,CAAA;IACpB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM,CAAA;IAChD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,eAAe,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC,CAAA;CACxD;AA0CD,iBAAS,cAAc;;yBAkIM,GAAG;;;WASlB,OAAO,IAA6B;EAEjD;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;UAhNZ,MAAM;;SADP,GAAG,GAAG,QAAQ;kBAHL,YAAY;YAOlB,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM;UADzC,MAAM;qBAIK,OAAO,CAAC,MAAM,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;6EAoNvD,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
@@ -17,6 +17,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
17
17
|
target: { default: void 0 },
|
18
18
|
minimize: { type: Boolean },
|
19
19
|
join: { type: Boolean },
|
20
|
+
semanticTypeMap: { default: void 0 },
|
20
21
|
to: { default: void 0 }
|
21
22
|
},
|
22
23
|
emits: ["click"],
|
@@ -31,14 +32,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
31
32
|
return openBlock(), createBlock(resolveDynamicComponent(_ctx.to !== void 0 ? _ctx.disabled ? "a" : unref(RouterLink) : _ctx.tag), mergeProps(
|
32
33
|
_ctx.disabled ? void 0 : _ctx.tag === "a" ? { href: _ctx.href, target: _ctx.target } : _ctx.to !== void 0 ? { to: _ctx.to, replace: _ctx.replace } : void 0,
|
33
34
|
{
|
34
|
-
class: ["relative isolate flex select-none items-center justify-center whitespace-nowrap rounded-
|
35
|
-
[unref(semanticTypeButtonStylesMap)[_ctx.semanticType]]: true,
|
36
|
-
[unref(semanticTypeButtonBorderStylesMap)[_ctx.semanticType]]: true,
|
35
|
+
class: ["w-ripple-rounded-[calc(var(--w-button-rounded,1rem)-0.0625rem)] relative isolate flex h-[--w-button-height,2.75rem] min-h-[--w-button-height,2.75rem] select-none items-center justify-center whitespace-nowrap rounded-[--w-button-rounded,1rem] px-[--w-button-rounded,1rem] font-medium outline-none", {
|
36
|
+
[_ctx.semanticTypeMap?.[_ctx.semanticType] ?? unref(semanticTypeButtonStylesMap)[_ctx.semanticType]]: true,
|
37
|
+
[_ctx.semanticTypeMap?.[_ctx.semanticType] ?? unref(semanticTypeButtonBorderStylesMap)[_ctx.semanticType]]: true,
|
37
38
|
"w-ripple w-ripple-hover before:text-black-default w-ripple-opacity-20 dark:w-ripple-opacity-30 cursor-pointer": !_ctx.loading && !_ctx.disabled,
|
38
39
|
"cursor-progress": _ctx.loading,
|
39
40
|
"cursor-not-allowed opacity-70": _ctx.disabled,
|
40
|
-
"h-11 min-h-11 px-4": !_ctx.minimize,
|
41
|
-
"h-7 min-h-7 px-1.5": _ctx.minimize,
|
42
41
|
"[&:not(:first-child)]:rounded-l-none [&:not(:first-child)]:border-l-0 [&:not(:last-child)]:rounded-r-none [&:not(:last-child)]:border-r-0": _ctx.join
|
43
42
|
}],
|
44
43
|
disabled: !_ctx.loading && _ctx.disabled,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WButtonGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Button/WButtonGroup.vue"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"WButtonGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Button/WButtonGroup.vue"],"names":[],"mappings":"AA2FA,OAAO,KAAK,EAAC,gBAAgB,EAAC,MAAM,SAAS,CAAA;yBAS5B,KAAK,SAAS,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,OAAO,EAAE,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW,SAAS;IAAC,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,CAAA;CAAC,CAAC,IAAI,CAAC,GAAG,SAAS,2BAC3J,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,cAClD,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,iBAC5F,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC;WAoKxD,mBAAmB,CAAC;;2LAAyD,CAAC,4BAA2B;oBAChG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;uBAjCc,GAAG;;;;YACD,GAAG;uBACJ,GAAG;;cA9HzB,oBAAoB,SAAS,KAAK,KAAG,IAAI;;;;YAkKH,OAAO,CAAC,OAAO,WAAW,CAAC;;AA9KvE,wBA8K4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
@@ -18,6 +18,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
18
18
|
semanticType: {},
|
19
19
|
stretch: { type: Boolean },
|
20
20
|
allowClear: { type: Boolean },
|
21
|
+
semanticTypeMap: {},
|
21
22
|
title: {},
|
22
23
|
description: {},
|
23
24
|
errorMessage: {},
|
@@ -71,6 +72,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
71
72
|
disabled: _ctx.disabled || _ctx.loading !== void 0 && getValue(item) !== _ctx.loading,
|
72
73
|
minimize: _ctx.minimize,
|
73
74
|
join: !_ctx.wrap && !_ctx.col,
|
75
|
+
"semantic-type-map": _ctx.semanticTypeMap,
|
74
76
|
class: normalizeClass({
|
75
77
|
"flex-1": _ctx.stretch
|
76
78
|
}),
|
@@ -89,7 +91,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
89
91
|
])
|
90
92
|
]),
|
91
93
|
_: 2
|
92
|
-
}, 1032, ["semantic-type", "loading", "disabled", "minimize", "join", "class", "onClick"]);
|
94
|
+
}, 1032, ["semantic-type", "loading", "disabled", "minimize", "join", "semantic-type-map", "class", "onClick"]);
|
93
95
|
}), 128))
|
94
96
|
], 2)
|
95
97
|
]),
|
@@ -16,6 +16,7 @@ interface ButtonGroupPropsBase<Model extends number | string | null | boolean> e
|
|
16
16
|
semanticType?: SemanticType;
|
17
17
|
stretch?: boolean;
|
18
18
|
allowClear?: boolean;
|
19
|
+
semanticTypeMap?: Partial<Record<SemanticType, string>>;
|
19
20
|
}
|
20
21
|
interface ButtonGroupPropsForModel<Model extends number | string | null | boolean, Entity extends Record<string, unknown>, ValueGetter extends {
|
21
22
|
fn(value: Entity): Model;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Button/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,iCAAiC,CAAA;AACtE,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,iCAAiC,CAAA;AACtE,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,sBAAsB,CAAA;AACtD,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,KAAK,CAAA;AAElC,MAAM,MAAM,sBAAsB,CAAC,MAAM,IAAI;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,OAAO,CAAA;CAAC,CAAA;AAEjF,MAAM,MAAM,0BAA0B,CAAC,MAAM,IAAI,SAAS,CAAC,sBAAsB,CAAC,MAAM,CAAC,CAAC,CAAA;AAE1F,UAAU,oBAAoB,CAAC,KAAK,SAAS,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,OAAO,CAC3E,SAAQ,IAAI,CAAC,iBAAiB,EAAE,YAAY,CAAC;IAC7C,UAAU,EAAE,KAAK,CAAA;IACjB,OAAO,CAAC,EAAE,KAAK,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,GAAG,CAAC,EAAE,OAAO,CAAA;IACb,YAAY,CAAC,EAAE,YAAY,CAAA;IAC3B,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,UAAU,CAAC,EAAE,OAAO,CAAA;
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Button/types.ts"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Input/WInput.vue"],"names":[],"mappings":"AAwXA,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,SAAS,CAAA;yBAYtB,IAAI,SAAS,SAAS,wBACzB,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,cAClD,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,iBAC5F,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC;
|
1
|
+
{"version":3,"file":"WInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Input/WInput.vue"],"names":[],"mappings":"AAwXA,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,SAAS,CAAA;yBAYtB,IAAI,SAAS,SAAS,wBACzB,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,cAClD,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,iBAC5F,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC;WA+sBxD,mBAAmB,CAAC,sBAAyD,CAAC,4BAA2B;oBAChG,OAAO,KAAK,EAAE,gBAAgB;qBAxmB/B,IAAI;oBAML,IAAI;MAkmBkD,GAAG,IAAI;WACpE,GAAG;;uBA1Dc,GAAG;0BACA,GAAG;wBACL,GAAG;wBACF,GAAG;wBACH,GAAG;uBACJ,GAAG;wBACF,GAAG;uBACJ,GAAG;uBACH,GAAG;;;YA9oBzB,mBAAmB,SAAS,4CAAa,SAAS,GAAG,IAAI;YACzD,gBAAgB,SAAS,aAAa,GAAG,IAAI;YAC7C,aAAa,SAAS,aAAa,GAAG,IAAI;YAC1C,eAAe,SAAS,aAAa,GAAG,IAAI;YAC5C,iBAAiB,SAAS,aAAa,GAAG,IAAI;YAC9C,oBAAoB,SAAS,aAAa,GAAG,IAAI;YACjD,aAAa,GAAG,IAAI;YACpB,OAAO,SAAS,UAAU,GAAG,IAAI;YACjC,MAAM,SAAS,UAAU,GAAG,IAAI;YAChC,OAAO,SAAS,UAAU,GAAG,IAAI;YACjC,WAAW,SAAS,UAAU,GAAG,IAAI;YACrC,cAAc,SAAS,UAAU,GAAG,IAAI;YACxC,cAAc,SAAS,KAAK,GAAG,IAAI;YACnC,OAAO,GAAG,IAAI;;;;;YAwrBwB,OAAO,CAAC,OAAO,WAAW,CAAC;;AAztBvE,wBAytB4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
@@ -216,7 +216,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
216
216
|
name: "field",
|
217
217
|
fn: withCtx(({ id, setFocused, focused }) => [
|
218
218
|
createElementVNode("div", {
|
219
|
-
class: normalizeClass(["bg-default dark:bg-default-dark relative grid min-h-
|
219
|
+
class: normalizeClass(["bg-default dark:bg-default-dark relative grid min-h-[--w-input-height,2.75rem] grid-cols-[auto,1fr,auto] overflow-hidden rounded-[--w-input-rounded,0.75rem] border border-solid transition-colors duration-75", {
|
220
220
|
"focus-within:border-primary-default dark:focus-within:border-primary-dark": !_ctx.disabled && !_ctx.readonly && !_ctx.unclickable,
|
221
221
|
"cursor-text": !_ctx.disabled,
|
222
222
|
"border-negative dark:border-negative-dark": _ctx.errorMessage,
|
@@ -239,7 +239,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
239
239
|
renderSlot(_ctx.$slots, "prefix"),
|
240
240
|
createElementVNode("div", {
|
241
241
|
class: normalizeClass(["flex flex-1 items-baseline", {
|
242
|
-
"first:pl-0 group-first/input:pl-
|
242
|
+
"first:pl-0 group-first/input:pl-[--w-input-rounded,0.75rem] group-last/input:pr-[--w-input-rounded,0.75rem] [&:not(:first-child)]:pl-[--w-input-rounded,0.75rem]": !_ctx.hideInput,
|
243
243
|
"absolute w-0 max-w-0 p-0": _ctx.hideInput
|
244
244
|
}])
|
245
245
|
}, [
|
@@ -247,12 +247,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
247
247
|
(openBlock(), createBlock(resolveDynamicComponent(_ctx.textarea ? "textarea" : "input"), {
|
248
248
|
id,
|
249
249
|
ref: "input",
|
250
|
-
class: normalizeClass(["w-input max-w-full flex-1 appearance-none border-none bg-[inherit]
|
251
|
-
"min-h-[
|
250
|
+
class: normalizeClass(["w-input max-w-full flex-1 appearance-none border-none bg-[inherit] font-normal outline-0 placeholder:text-gray-400 disabled:cursor-not-allowed disabled:opacity-80 dark:placeholder:text-gray-500", {
|
251
|
+
"min-h-[--w-textarea-height,10rem] w-full py-3": _ctx.textarea,
|
252
252
|
"resize-y": _ctx.resize && _ctx.textarea,
|
253
253
|
"resize-none": !_ctx.resize && _ctx.textarea,
|
254
|
-
"h-[var(--input-height,2.
|
255
|
-
"h-[var(--input-height,2.
|
254
|
+
"h-[calc(var(--w-input-height,2.75rem)-0.125rem)]": !_ctx.textarea && !_ctx.$slots.suffix,
|
255
|
+
"h-[calc(var(--w-input-height,2.75rem)-0.625rem)]": !_ctx.textarea && _ctx.$slots.suffix,
|
256
256
|
"font-mono": _ctx.mono,
|
257
257
|
"text-secure": _ctx.textSecure && !isSecureVisible.value,
|
258
258
|
"text-black-default dark:text-gray-200": !_ctx.disabled,
|
@@ -9,7 +9,7 @@ import _sfc_main$1 from './InputActionsButton.vue.js';
|
|
9
9
|
|
10
10
|
const _hoisted_1 = {
|
11
11
|
key: 0,
|
12
|
-
class: "bg-default dark:bg-default-dark flex overflow-hidden rounded-
|
12
|
+
class: "bg-default dark:bg-default-dark flex overflow-hidden rounded-[--w-input-rounded,0.75rem]"
|
13
13
|
};
|
14
14
|
const _hoisted_2 = {
|
15
15
|
key: 4,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"InputActionsButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/components/InputActionsButton.vue"],"names":[],"mappings":"AAkEA,iBAAS,cAAc;;
|
1
|
+
{"version":3,"file":"InputActionsButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/components/InputActionsButton.vue"],"names":[],"mappings":"AAkEA,iBAAS,cAAc;;yBA2DM,GAAG;;;WASlB,OAAO,IAA6B;EAEjD;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;kBArGL,MAAM;eACT,OAAO;WACX,YAAY;UACb,OAAO;;;;kBAHC,MAAM;eACT,OAAO;WACX,YAAY;UACb,OAAO;;;kFA2Gb,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
@@ -20,7 +20,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
20
20
|
"cursor-not-allowed": _ctx.disabled,
|
21
21
|
"items-center": !_ctx.top,
|
22
22
|
"items-start": _ctx.top
|
23
|
-
}, "text-description relative flex h-full w-
|
23
|
+
}, "text-description relative flex h-full w-[calc(var(--w-input-height,2.75rem)-0.125rem)] select-none justify-center"]),
|
24
24
|
onMousedown: _cache[0] || (_cache[0] = withModifiers(() => {
|
25
25
|
}, ["prevent", "stop"])),
|
26
26
|
onClick: _cache[1] || (_cache[1] = withModifiers(($event) => _ctx.$emit("click", $event), ["stop"]))
|
package/package.json
CHANGED
package/tailwind-base/index.ts
CHANGED
@@ -3,7 +3,7 @@ import plugin from 'tailwindcss/plugin.js'
|
|
3
3
|
const pluginDefault = plugin(function ({matchUtilities, addVariant, addUtilities, addBase, theme, addComponents, config}) {
|
4
4
|
matchUtilities(
|
5
5
|
{
|
6
|
-
square:
|
6
|
+
square: value => {
|
7
7
|
return {
|
8
8
|
minWidth: value,
|
9
9
|
maxWidth: value,
|
@@ -13,31 +13,31 @@ const pluginDefault = plugin(function ({matchUtilities, addVariant, addUtilities
|
|
13
13
|
minHeight: value,
|
14
14
|
}
|
15
15
|
},
|
16
|
-
height:
|
16
|
+
height: value => {
|
17
17
|
return {
|
18
18
|
height: value,
|
19
19
|
maxHeight: value,
|
20
20
|
minHeight: value,
|
21
21
|
}
|
22
22
|
},
|
23
|
-
width:
|
23
|
+
width: value => {
|
24
24
|
return {
|
25
25
|
minWidth: value,
|
26
26
|
maxWidth: value,
|
27
27
|
width: value,
|
28
28
|
}
|
29
29
|
},
|
30
|
-
'chunk-gap':
|
30
|
+
'chunk-gap': value => {
|
31
31
|
return {
|
32
32
|
'--split-to-chunks-gap': value,
|
33
33
|
}
|
34
34
|
},
|
35
|
-
'w-spinner-size':
|
35
|
+
'w-spinner-size': value => {
|
36
36
|
return {
|
37
37
|
'--spinner-size': value,
|
38
38
|
}
|
39
39
|
},
|
40
|
-
'w-modal-wrapper-padding':
|
40
|
+
'w-modal-wrapper-padding': value => {
|
41
41
|
return {
|
42
42
|
'--modal-wrapper-padding': value,
|
43
43
|
}
|
@@ -80,7 +80,7 @@ const pluginDefault = plugin(function ({matchUtilities, addVariant, addUtilities
|
|
80
80
|
|
81
81
|
matchUtilities(
|
82
82
|
{
|
83
|
-
'chunk-span':
|
83
|
+
'chunk-span': value => {
|
84
84
|
return {
|
85
85
|
'--split-to-chunks-span': value,
|
86
86
|
}
|
@@ -224,17 +224,17 @@ const pluginDefault = plugin(function ({matchUtilities, addVariant, addUtilities
|
|
224
224
|
|
225
225
|
matchUtilities(
|
226
226
|
{
|
227
|
-
'w-scroll-bar-color':
|
227
|
+
'w-scroll-bar-color': value => {
|
228
228
|
return {
|
229
229
|
'--w-scroll-bar-color': value,
|
230
230
|
}
|
231
231
|
},
|
232
|
-
'w-scroll-bar-color-hover':
|
232
|
+
'w-scroll-bar-color-hover': value => {
|
233
233
|
return {
|
234
234
|
'--w-scroll-bar-color-hover': value,
|
235
235
|
}
|
236
236
|
},
|
237
|
-
'w-has-changes-color':
|
237
|
+
'w-has-changes-color': value => {
|
238
238
|
return {
|
239
239
|
'--has-changes-bg': value,
|
240
240
|
}
|
@@ -300,7 +300,7 @@ const pluginDefault = plugin(function ({matchUtilities, addVariant, addUtilities
|
|
300
300
|
left: '0',
|
301
301
|
height: '100%',
|
302
302
|
width: '100%',
|
303
|
-
'border-radius': 'inherit',
|
303
|
+
'border-radius': 'var(--w-ripple-rounded,inherit)',
|
304
304
|
'background-color': 'currentColor',
|
305
305
|
'pointer-events': 'none',
|
306
306
|
'user-select': 'none',
|
@@ -375,12 +375,12 @@ const pluginDefault = plugin(function ({matchUtilities, addVariant, addUtilities
|
|
375
375
|
|
376
376
|
matchUtilities(
|
377
377
|
{
|
378
|
-
'w-ripple-opacity':
|
378
|
+
'w-ripple-opacity': value => {
|
379
379
|
return {
|
380
380
|
'--w-ripple-opacity': value,
|
381
381
|
}
|
382
382
|
},
|
383
|
-
'w-hover-circle-opacity':
|
383
|
+
'w-hover-circle-opacity': value => {
|
384
384
|
return {
|
385
385
|
'--w-hover-circle-opacity': value,
|
386
386
|
}
|
@@ -431,7 +431,7 @@ const pluginDefault = plugin(function ({matchUtilities, addVariant, addUtilities
|
|
431
431
|
position: 'relative',
|
432
432
|
width: 'var(--skeleton-width,var(--skeleton-width-internal,70%))',
|
433
433
|
height: 'var(--skeleton-height)',
|
434
|
-
'border-radius': 'var(--skeleton-rounded,0.5rem)',
|
434
|
+
'border-radius': 'var(--w-skeleton-rounded,0.5rem)',
|
435
435
|
overflow: 'hidden',
|
436
436
|
cursor: 'progress',
|
437
437
|
'&:not(.w-skeleton-static):before': {
|
@@ -458,40 +458,38 @@ const pluginDefault = plugin(function ({matchUtilities, addVariant, addUtilities
|
|
458
458
|
|
459
459
|
matchUtilities(
|
460
460
|
{
|
461
|
-
'w-skeleton-
|
461
|
+
'w-skeleton-w': value => {
|
462
462
|
return {
|
463
|
-
'--skeleton-
|
463
|
+
'--skeleton-width': value,
|
464
464
|
}
|
465
465
|
},
|
466
466
|
},
|
467
467
|
{
|
468
|
-
values: theme('
|
468
|
+
values: theme('width'),
|
469
469
|
},
|
470
470
|
)
|
471
471
|
|
472
472
|
matchUtilities(
|
473
473
|
{
|
474
|
-
'w-skeleton-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
},
|
474
|
+
'w-skeleton-h': value => ({'--skeleton-height': value}),
|
475
|
+
'w-input-h': value => ({'--w-input-height': value}),
|
476
|
+
'w-textarea-h': value => ({'--w-textarea-height': value}),
|
477
|
+
'w-button-h': value => ({'--w-button-height': value}),
|
479
478
|
},
|
480
479
|
{
|
481
|
-
values: theme('
|
480
|
+
values: theme('height'),
|
482
481
|
},
|
483
482
|
)
|
484
483
|
|
485
484
|
matchUtilities(
|
486
485
|
{
|
487
|
-
'w-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
},
|
486
|
+
'w-input-rounded': value => ({'--w-input-rounded': value}),
|
487
|
+
'w-button-rounded': value => ({'--w-button-rounded': value}),
|
488
|
+
'w-skeleton-rounded': value => ({'--w-skeleton-rounded': value}),
|
489
|
+
'w-ripple-rounded': value => ({'--w-ripple-rounded': value}),
|
492
490
|
},
|
493
491
|
{
|
494
|
-
values: theme('
|
492
|
+
values: theme('borderRadius'),
|
495
493
|
},
|
496
494
|
)
|
497
495
|
})
|