eco-vue-js 0.9.30 → 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/README.md CHANGED
@@ -12,17 +12,19 @@ npm i eco-vue-js
12
12
 
13
13
  ### Tailwind configuration
14
14
 
15
- 1. Add the following lines to the `content` section in your [Tailwind configuration file](https://tailwindcss.com/docs/content-configuration):
15
+ 1. Add the library's [Tailwind preset](https://tailwindcss.com/docs/presets) to your [Tailwind configuration file](https://tailwindcss.com/docs/content-configuration):
16
16
  ```
17
- content: [
18
- './node_modules/eco-vue-js/dist/components/**/*.vue.js',
19
- './node_modules/eco-vue-js/dist/components/**/*.js',
17
+ import tailwindBase from 'eco-vue-js/tailwind-base'
18
+
19
+ presets: [
20
+ tailwindBase,
20
21
  ]
21
22
  ```
22
- 2. Add the library's [Tailwind preset](https://tailwindcss.com/docs/presets) to your configuration file:
23
+
24
+ 2. Add the following lines to the `content` section in your configuration file:
23
25
  ```
24
- presets: [
25
- require('eco-vue-js/tailwind-base/index.cjs'),
26
+ content: [
27
+ ...tailwindBase.content,
26
28
  ]
27
29
  ```
28
30
 
@@ -1,7 +1,13 @@
1
+ import { VNode } from 'vue';
1
2
  declare function __VLS_template(): {
2
- slots: {
3
- top?(_: {}): any;
4
- bottom?(_: {}): any;
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":"AAkJA,iBAAS,cAAc;;qBA+JG,GAAG;wBACA,GAAG;;;WASlB,OAAO,IAA6B;EAEjD;AAgBD,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"}
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 hasTop = computed(() => !!slots.top?.()?.length);
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
- hasTop.value && (hasFilter.value || hasBottom.value) ? (openBlock(), createElementBlock("div", _hoisted_5)) : createCommentVNode("", true),
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":"AAiGA,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;CACf;AAwCD,iBAAS,cAAc;;yBAwIM,GAAG;;;WASlB,OAAO,IAA6B;EAEjD;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;UAnNZ,MAAM;;SADP,GAAG,GAAG,QAAQ;kBAHL,YAAY;YAOlB,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM;UADzC,MAAM;6EA2Nb,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"}
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-2xl font-medium outline-none", {
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":"AA0FA,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"}
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":"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"}
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;IACpB,eAAe,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC,CAAA;CACxD;AAED,UAAU,wBAAwB,CAAC,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,GAAG,SAAS,CACrM,SAAQ,oBAAoB,CAAC,KAAK,CAAC;IACnC,IAAI,EAAE,KAAK,EAAE,CAAA;IACb,WAAW,CAAC,EAAE,WAAW,GAAG,SAAS,CAAA;IACrC,eAAe,CAAC,EAAE,0BAA0B,CAAC,KAAK,CAAC,CAAA;CACpD;AAED,UAAU,yBAAyB,CAAC,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,GAAG,SAAS,CACtM,SAAQ,oBAAoB,CAAC,KAAK,CAAC;IACnC,IAAI,EAAE,MAAM,EAAE,CAAA;IACd,WAAW,EAAE,WAAW,GAAG,CAAC,CAAC,KAAK,EAAE,MAAM,KAAK,KAAK,CAAC,CAAA;IACrD,eAAe,CAAC,EAAE,0BAA0B,CAAC,MAAM,CAAC,CAAA;CACrD;AAED,MAAM,MAAM,gBAAgB,CAAC,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,GAAG,SAAS,IAAI,yBAAyB,CAAC,KAAK,EAAE,MAAM,EAAE,WAAW,CAAC,GAAG,wBAAwB,CAAC,KAAK,EAAE,MAAM,EAAE,WAAW,CAAC,CAAA;AAEjT,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,iBAAiB,EAAE,QAAQ,GAAG,aAAa,GAAG,YAAY,GAAG,iBAAiB,GAAG,WAAW,GAAG,UAAU,CAAC,EAC1J,OAAO,CAAC,IAAI,CAAC,iBAAiB,EAAE,iBAAiB,GAAG,WAAW,GAAG,UAAU,CAAC,CAAC;IAC9E,YAAY,CAAC,EAAE,YAAY,CAAA;IAC3B,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB"}
@@ -24,6 +24,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
24
24
  semanticType: {},
25
25
  stretch: { type: Boolean },
26
26
  allowClear: { type: Boolean },
27
+ semanticTypeMap: {},
27
28
  title: {},
28
29
  description: {},
29
30
  errorMessage: {},
@@ -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;WAgtBxD,mBAAmB,CAAC,sBAAyD,CAAC,4BAA2B;oBAChG,OAAO,KAAK,EAAE,gBAAgB;qBAzmB/B,IAAI;oBAML,IAAI;MAmmBkD,GAAG,IAAI;WACpE,GAAG;;uBA1Dc,GAAG;0BACA,GAAG;wBACL,GAAG;wBACF,GAAG;wBACH,GAAG;uBACJ,GAAG;wBACF,GAAG;uBACJ,GAAG;uBACH,GAAG;;;YA/oBzB,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;;;;;YAyrBwB,OAAO,CAAC,OAAO,WAAW,CAAC;;AA1tBvE,wBA0tB4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,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-11 grid-cols-[auto,1fr,auto] overflow-hidden rounded-xl border border-solid transition-colors duration-75", {
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-3 group-last/input:pr-3 [&:not(:first-child)]:pl-3": !_ctx.hideInput,
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] text-base font-normal outline-0 placeholder:text-gray-400 disabled:cursor-not-allowed disabled:opacity-80 dark:placeholder:text-gray-500", {
251
- "min-h-[var(--textarea-height,10rem)] w-full py-3": _ctx.textarea,
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.625rem)]": !_ctx.textarea && !_ctx.$slots.suffix,
255
- "h-[var(--input-height,2.125rem)]": !_ctx.textarea && _ctx.$slots.suffix,
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-xl"
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;;yBA4DM,GAAG;;;WASlB,OAAO,IAA6B;EAEjD;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;kBAtGL,MAAM;eACT,OAAO;WACX,YAAY;UACb,OAAO;;;;kBAHC,MAAM;eACT,OAAO;WACX,YAAY;UACb,OAAO;;;kFA4Gb,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"}
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-11 select-none justify-center py-[0.6875rem]"]),
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
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/rsmple/eco-vue-js.git"
6
6
  },
7
- "version": "0.9.30",
7
+ "version": "0.10.1",
8
8
  "scripts": {
9
9
  "build": "run-p type-check \"build-only {@}\" --",
10
10
  "preview": "vite preview",
@@ -71,8 +71,9 @@
71
71
  "./dist/types/types.d.ts": {
72
72
  "import": "./dist/types/types.d.ts"
73
73
  },
74
- "./tailwind-base/index.cjs": {
75
- "require": "./tailwind-base/index.cjs"
74
+ "./tailwind-base": {
75
+ "import": "./tailwind-base/index.ts",
76
+ "require": "./tailwind-base/index.ts"
76
77
  },
77
78
  "./eslint/plugin": {
78
79
  "import": "./eslint/plugin.js"
@@ -1,7 +1,21 @@
1
- /** @type {import('tailwindcss').Config} */
2
- const colors = require('tailwindcss/colors')
1
+ import type {Config} from 'tailwindcss'
3
2
 
4
- module.exports = {
3
+ import colors from 'tailwindcss/colors.js'
4
+
5
+ import pluginDefault from './plugins/default.js'
6
+ import animations from './theme/animations.js'
7
+ import score from './theme/score.js'
8
+ import severity from './theme/severity.js'
9
+ import sizes from './theme/sizes.js'
10
+
11
+ const tailwindBase = {
12
+ darkMode: ['variant', [
13
+ '.dark &:not(:is(.light *))',
14
+ ]],
15
+ content: [
16
+ './node_modules/eco-vue-js/dist/components/**/*.vue.js',
17
+ './node_modules/eco-vue-js/dist/components/**/*.js',
18
+ ],
5
19
  theme: {
6
20
  colors: {
7
21
  current: 'currentColor',
@@ -36,34 +50,34 @@ module.exports = {
36
50
  info: '#82adff',
37
51
  'info-dark': '#407ae5',
38
52
 
39
- severity: require('./theme/severity.cjs'),
40
- score: require('./theme/score.cjs'),
53
+ severity,
54
+ score,
41
55
 
42
56
  transparent: 'transparent',
43
57
  },
44
58
  extend: {
45
- ...require('./theme/sizes.cjs'),
46
- ...require('./theme/animations.cjs'),
59
+ ...sizes,
60
+ ...animations,
47
61
  screens: {
48
- 'xs': '480px',
49
- 'sm': '640px',
50
- 'md': '768px',
51
- 'lg': '1024px',
52
- 'xl': '1280px',
62
+ xs: '480px',
63
+ sm: '640px',
64
+ md: '768px',
65
+ lg: '1024px',
66
+ xl: '1280px',
53
67
  '2xl': '1536px',
54
68
  '3xl': '1728px',
55
69
  '4xl': '1920px',
56
70
  '5xl': '2560px',
57
71
 
58
- 'xs-not': {'max': '479px'},
59
- 'sm-not': {'max': '639px'},
60
- 'md-not': {'max': '767px'},
61
- 'lg-not': {'max': '1023px'},
62
- 'xl-not': {'max': '1279px'},
63
- '2xl-not': {'max': '1535px'},
64
- '3xl-not': {'max': '1727px'},
65
- '4xl-not': {'max': '1919px'},
66
- '5xl-not': {'max': '2559px'},
72
+ 'xs-not': {max: '479px'},
73
+ 'sm-not': {max: '639px'},
74
+ 'md-not': {max: '767px'},
75
+ 'lg-not': {max: '1023px'},
76
+ 'xl-not': {max: '1279px'},
77
+ '2xl-not': {max: '1535px'},
78
+ '3xl-not': {max: '1727px'},
79
+ '4xl-not': {max: '1919px'},
80
+ '5xl-not': {max: '2559px'},
67
81
  },
68
82
  scale: {
69
83
  120: '1.2',
@@ -72,6 +86,8 @@ module.exports = {
72
86
  200: '2.0',
73
87
  },
74
88
  borderRadius: {
89
+ '2.75xl': '1.375rem',
90
+ '3.5xl': '1.75rem',
75
91
  '4xl': '2rem',
76
92
  },
77
93
  boxShadow: {
@@ -90,7 +106,7 @@ module.exports = {
90
106
  3: '3',
91
107
  },
92
108
  overflow: {
93
- 'overlay': 'overlay',
109
+ overlay: 'overlay',
94
110
  },
95
111
  },
96
112
  fontFamily: {
@@ -100,6 +116,8 @@ module.exports = {
100
116
  },
101
117
  },
102
118
  plugins: [
103
- require('./plugins/default.cjs'),
119
+ pluginDefault,
104
120
  ],
105
- }
121
+ } satisfies Config
122
+
123
+ export default tailwindBase
@@ -1,9 +1,9 @@
1
- const plugin = require('tailwindcss/plugin')
1
+ import plugin from 'tailwindcss/plugin.js'
2
2
 
3
- module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, addBase, theme, addComponents, config}) {
3
+ const pluginDefault = plugin(function ({matchUtilities, addVariant, addUtilities, addBase, theme, addComponents, config}) {
4
4
  matchUtilities(
5
5
  {
6
- square: (value) => {
6
+ square: value => {
7
7
  return {
8
8
  minWidth: value,
9
9
  maxWidth: value,
@@ -13,31 +13,31 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
13
13
  minHeight: value,
14
14
  }
15
15
  },
16
- height: (value) => {
16
+ height: value => {
17
17
  return {
18
18
  height: value,
19
19
  maxHeight: value,
20
20
  minHeight: value,
21
21
  }
22
22
  },
23
- width: (value) => {
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': (value) => {
30
+ 'chunk-gap': value => {
31
31
  return {
32
32
  '--split-to-chunks-gap': value,
33
33
  }
34
34
  },
35
- 'w-spinner-size': (value) => {
35
+ 'w-spinner-size': value => {
36
36
  return {
37
37
  '--spinner-size': value,
38
38
  }
39
39
  },
40
- 'w-modal-wrapper-padding': (value) => {
40
+ 'w-modal-wrapper-padding': value => {
41
41
  return {
42
42
  '--modal-wrapper-padding': value,
43
43
  }
@@ -56,11 +56,11 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
56
56
 
57
57
  return Array(4).fill(undefined).reduce(
58
58
  (current, _, index) => {
59
- const widthValue = `calc(((100% / ${index + 2}) * var(--split-to-chunks-span, 1)) - (var(--split-to-chunks-gap, 16px) * ${(index + 1)} / ${(index + 2)}))`
59
+ const widthValue = `calc(((100% / ${ index + 2 }) * var(--split-to-chunks-span, 1)) - (var(--split-to-chunks-gap, 16px) * ${ (index + 1) } / ${ (index + 2) }))`
60
60
 
61
61
  return {
62
62
  ...current,
63
- [`@media (min-width: ${value * (index + 2) + (index < 1 ? 2 : 25.25)}${unit})`]: {
63
+ [`@media (min-width: ${ value * (index + 2) + (index < 1 ? 2 : 25.25) }${ unit })`]: {
64
64
  width: widthValue,
65
65
  minWidth: widthValue,
66
66
  },
@@ -80,7 +80,7 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
80
80
 
81
81
  matchUtilities(
82
82
  {
83
- 'chunk-span': (value) => {
83
+ 'chunk-span': value => {
84
84
  return {
85
85
  '--split-to-chunks-span': value,
86
86
  }
@@ -99,16 +99,16 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
99
99
  'max-width': 'calc(100vw - var(--nav-bar-width) - var(--inner-margin) - var(--inner-margin) - var(--scroll-bar-width))',
100
100
  },
101
101
  '.w-inner': {
102
- 'width': 'calc(100vw - var(--actions-bar-width) - var(--nav-bar-width) - var(--inner-margin) - var(--inner-margin) - var(--scroll-bar-width))',
102
+ width: 'calc(100vw - var(--actions-bar-width) - var(--nav-bar-width) - var(--inner-margin) - var(--inner-margin) - var(--scroll-bar-width))',
103
103
  },
104
104
  '.min-w-inner': {
105
105
  'min-width': 'calc(100vw - var(--actions-bar-width) - var(--nav-bar-width) - var(--inner-margin) - var(--inner-margin) - var(--scroll-bar-width))',
106
106
  },
107
107
  '.left-inner': {
108
- 'left': 'calc(var(--nav-bar-width) + var(--inner-margin))',
108
+ left: 'calc(var(--nav-bar-width) + var(--inner-margin))',
109
109
  },
110
110
  '.right-inner': {
111
- 'right': 'calc(var(--actions-bar-width) + var(--inner-margin))',
111
+ right: 'calc(var(--actions-bar-width) + var(--inner-margin))',
112
112
  },
113
113
  })
114
114
 
@@ -124,7 +124,7 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
124
124
 
125
125
  addBase({
126
126
  '.w-input': {
127
- 'outline': 'none',
127
+ outline: 'none',
128
128
 
129
129
  '--input-autofill-bg': theme('colors.default'),
130
130
  '--input-autofull-text': theme('colors.black.default'),
@@ -134,24 +134,24 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
134
134
  },
135
135
 
136
136
  '&:focus-visible': {
137
- 'outline': 'none',
137
+ outline: 'none',
138
138
  },
139
139
 
140
140
  '&[autocomplete="off"]': {
141
141
  '&::-webkit-contacts-auto-fill-button, &::-webkit-credentials-auto-fill-button': {
142
- 'visibility': 'hidden',
143
- 'display': 'none !important',
142
+ visibility: 'hidden',
143
+ display: 'none !important',
144
144
  'pointer-events': 'none',
145
- 'height': '0',
146
- 'width': '0',
147
- 'margin': '0',
145
+ height: '0',
146
+ width: '0',
147
+ margin: '0',
148
148
  },
149
149
  },
150
150
 
151
151
  '&::-webkit-outer-spin-button, &::-webkit-inner-spin-button': {
152
152
  '-webkit-appearance': 'none',
153
- 'appearance': 'none',
154
- 'margin': '0',
153
+ appearance: 'none',
154
+ margin: '0',
155
155
  },
156
156
 
157
157
  '&:-webkit-autofill': {
@@ -163,11 +163,11 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
163
163
 
164
164
  '&[type=number]': {
165
165
  '-moz-appearance': 'textfield',
166
- 'appearance': 'textfield',
166
+ appearance: 'textfield',
167
167
  },
168
168
 
169
169
  '&::-webkit-textfield-decoration-container, &:focus::-webkit-textfield-decoration-container': {
170
- 'visibility': 'hidden',
170
+ visibility: 'hidden',
171
171
  'pointer-events': 'none',
172
172
  },
173
173
  },
@@ -176,12 +176,12 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
176
176
  addBase({
177
177
  '.w-scrollbar': {
178
178
  '&::-webkit-scrollbar, & ::-webkit-scrollbar': {
179
- 'width': '12px',
180
- 'height': '12px',
179
+ width: '12px',
180
+ height: '12px',
181
181
  'z-index': '500',
182
182
  },
183
183
  '&::-webkit-scrollbar-button, & ::-webkit-scrollbar-button': {
184
- 'display': 'none',
184
+ display: 'none',
185
185
  },
186
186
  '&::-webkit-scrollbar-thumb, & ::-webkit-scrollbar-thumb': {
187
187
  'border-radius': '5px',
@@ -195,7 +195,7 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
195
195
  },
196
196
  },
197
197
  '&::-webkit-scrollbar-track, & ::-webkit-scrollbar-track, &::-webkit-scrollbar-corner, & ::-webkit-scrollbar-corner': {
198
- 'background': 'transparent',
198
+ background: 'transparent',
199
199
  },
200
200
  },
201
201
  'html.w-scrollbar': {
@@ -207,34 +207,34 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
207
207
  },
208
208
  },
209
209
  'textarea::-webkit-resizer': {
210
- 'transform': 'scale(2)',
210
+ transform: 'scale(2)',
211
211
  'transform-origin': 'top left',
212
212
  'background-size': '7px 7px',
213
213
  'background-position': 'top',
214
214
  'background-image': 'linear-gradient(135deg, currentColor 10%, transparent 10%, transparent 50%, currentColor 50%, currentColor 60%, transparent 60%, transparent 100%)',
215
- 'color': theme('colors.gray.300'),
215
+ color: theme('colors.gray.300'),
216
216
  [config('darkMode')[1][0]]: {
217
- 'color': theme('colors.gray.700'),
217
+ color: theme('colors.gray.700'),
218
218
  },
219
219
  },
220
220
  '*:focus-visible': {
221
- 'outline': 'none',
221
+ outline: 'none',
222
222
  },
223
223
  })
224
224
 
225
225
  matchUtilities(
226
226
  {
227
- 'w-scroll-bar-color': (value) => {
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': (value) => {
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': (value) => {
237
+ 'w-has-changes-color': value => {
238
238
  return {
239
239
  '--has-changes-bg': value,
240
240
  }
@@ -251,7 +251,7 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
251
251
  },
252
252
  '.no-scrollbar': {
253
253
  '&::-webkit-scrollbar': {
254
- 'display': 'none',
254
+ display: 'none',
255
255
  },
256
256
  },
257
257
  '.overflow-y-overlay': {
@@ -274,15 +274,15 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
274
274
 
275
275
  addComponents({
276
276
  '.text-accent': {
277
- 'color': theme('colors.black.default'),
277
+ color: theme('colors.black.default'),
278
278
  [config('darkMode')[1][0]]: {
279
- 'color': theme('colors.gray.200'),
279
+ color: theme('colors.gray.200'),
280
280
  },
281
281
  },
282
282
  '.text-description': {
283
- 'color': theme('colors.gray.400'),
283
+ color: theme('colors.gray.400'),
284
284
  [config('darkMode')[1][0]]: {
285
- 'color': theme('colors.gray.500'),
285
+ color: theme('colors.gray.500'),
286
286
  },
287
287
  },
288
288
  '.text-secure': {
@@ -294,48 +294,48 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
294
294
  addUtilities({
295
295
  '.w-ripple': {
296
296
  '&::before, &-has-only::before': {
297
- 'content': '""',
298
- 'position': 'absolute',
299
- 'top': '0',
300
- 'left': '0',
301
- 'height': '100%',
302
- 'width': '100%',
303
- 'border-radius': 'inherit',
297
+ content: '""',
298
+ position: 'absolute',
299
+ top: '0',
300
+ left: '0',
301
+ height: '100%',
302
+ width: '100%',
303
+ 'border-radius': 'var(--w-ripple-rounded,inherit)',
304
304
  'background-color': 'currentColor',
305
305
  'pointer-events': 'none',
306
306
  'user-select': 'none',
307
- 'opacity': '0',
307
+ opacity: '0',
308
308
  'transition-property': 'opacity',
309
309
  'transition-timing-function': 'cubic-bezier(0.4, 0, 0.2, 1)',
310
310
  'transition-duration': '100ms',
311
311
  },
312
312
 
313
313
  '&:active::before': {
314
- 'opacity': 'calc(var(--w-ripple-opacity, 0.10) * 2)',
314
+ opacity: 'calc(var(--w-ripple-opacity, 0.10) * 2)',
315
315
  },
316
316
  },
317
317
 
318
318
  '.w-ripple-trigger:active': {
319
319
  '.w-ripple::before, &.w-ripple::before': {
320
- 'opacity': 'calc(var(--w-ripple-opacity, 0.10) * 2)',
320
+ opacity: 'calc(var(--w-ripple-opacity, 0.10) * 2)',
321
321
  },
322
322
  },
323
323
 
324
324
  '.w-ripple-trigger-has:has(.w-ripple-has:active)': {
325
325
  '.w-ripple-has-only::before, &.w-ripple-has-only::before': {
326
- 'opacity': 'calc(var(--w-ripple-opacity, 0.10) * 2)',
326
+ opacity: 'calc(var(--w-ripple-opacity, 0.10) * 2)',
327
327
  },
328
328
  },
329
329
 
330
330
  '.w-ripple-hover:not(:active):hover, .w-ripple-trigger:not(:active):hover .w-ripple-hover, .w-ripple-hover:not(:active):focus, .w-ripple-trigger:not(:active):focus .w-ripple-hover': {
331
331
  '& .w-ripple:not(:active)::before, &.w-ripple::before': {
332
- 'opacity': 'var(--w-ripple-opacity, 0.10)',
332
+ opacity: 'var(--w-ripple-opacity, 0.10)',
333
333
  },
334
334
  },
335
335
 
336
336
  '.w-ripple-trigger-has:has(.w-ripple-has:not(:active):hover) .w-ripple-hover, .w-ripple-trigger-has:has(.w-ripple-has:not(:active):focus) .w-ripple-hover': {
337
337
  '& .w-ripple-has-only:not(:active)::before, &.w-ripple-has-only::before': {
338
- 'opacity': 'var(--w-ripple-opacity, 0.10)',
338
+ opacity: 'var(--w-ripple-opacity, 0.10)',
339
339
  },
340
340
  },
341
341
  })
@@ -343,44 +343,44 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
343
343
  addUtilities({
344
344
  '.w-hover-circle': {
345
345
  '&::after': {
346
- 'content': '""',
347
- 'position': 'absolute',
348
- 'top': '0',
349
- 'left': '0',
350
- 'height': '100%',
351
- 'width': '100%',
346
+ content: '""',
347
+ position: 'absolute',
348
+ top: '0',
349
+ left: '0',
350
+ height: '100%',
351
+ width: '100%',
352
352
  'border-radius': '9999px',
353
353
  'z-index': '1',
354
354
  'background-color': 'currentColor',
355
355
  'pointer-events': 'none',
356
356
  'user-select': 'none',
357
- 'opacity': '0',
358
- 'transform': 'scaleX(0.5) scaleY(0.5)',
357
+ opacity: '0',
358
+ transform: 'scaleX(0.5) scaleY(0.5)',
359
359
  'transition-property': 'opacity transform',
360
360
  'transition-timing-function': 'cubic-bezier(0.4, 0, 0.2, 1)',
361
361
  'transition-duration': '200ms',
362
362
  },
363
363
 
364
364
  '&:hover::after, .w-hover-circle-trigger:hover &::after, &:focus::after, .w-hover-circle-trigger:focus &::after': {
365
- 'opacity': 'var(--w-hover-circle-opacity, 0.10)',
366
- 'transform': 'scaleX(2.2) scaleY(2.2)',
365
+ opacity: 'var(--w-hover-circle-opacity, 0.10)',
366
+ transform: 'scaleX(2.2) scaleY(2.2)',
367
367
  },
368
368
 
369
369
  '&:active::after, .w-hover-circle-trigger:active &::after': {
370
- 'opacity': 'var(--w-hover-circle-opacity, 0.10)',
371
- 'transform': 'scaleX(1.8) scaleY(1.8)',
370
+ opacity: 'var(--w-hover-circle-opacity, 0.10)',
371
+ transform: 'scaleX(1.8) scaleY(1.8)',
372
372
  },
373
373
  },
374
374
  })
375
375
 
376
376
  matchUtilities(
377
377
  {
378
- 'w-ripple-opacity': (value) => {
378
+ 'w-ripple-opacity': value => {
379
379
  return {
380
380
  '--w-ripple-opacity': value,
381
381
  }
382
382
  },
383
- 'w-hover-circle-opacity': (value) => {
383
+ 'w-hover-circle-opacity': value => {
384
384
  return {
385
385
  '--w-hover-circle-opacity': value,
386
386
  }
@@ -394,22 +394,22 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
394
394
  addUtilities({
395
395
  '.w-progress-striped': {
396
396
  '&::before': {
397
- 'content': '""',
397
+ content: '""',
398
398
  'background-image': 'linear-gradient(135deg, hsla(0,0%,100%,.125) 25%, transparent 0, transparent 50%, hsla(0,0%,100%,.125) 0, hsla(0,0%,100%,.125) 75%, transparent 0, transparent)',
399
- 'position': 'absolute',
400
- 'top': '0',
401
- 'left': '0',
402
- 'width': 'calc(100% + 40px)',
403
- 'height': '100%',
399
+ position: 'absolute',
400
+ top: '0',
401
+ left: '0',
402
+ width: 'calc(100% + 40px)',
403
+ height: '100%',
404
404
  'background-repeat': 'repeat',
405
405
  'background-size': '40px 40px',
406
- 'animation': theme('animation.move-horizontal'),
406
+ animation: theme('animation.move-horizontal'),
407
407
  },
408
408
  [config('darkMode')[1][0]]: {
409
409
  '&::before': {
410
410
  'background-image': 'linear-gradient(135deg, hsla(0,0%,10%,.125) 25%, transparent 0, transparent 50%, hsla(0,0%,10%,.125) 0, hsla(0,0%,10%,.125) 75%, transparent 0, transparent)',
411
411
  },
412
- }
412
+ },
413
413
  },
414
414
  })
415
415
 
@@ -419,7 +419,7 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
419
419
  'padding-bottom': '0.3125rem',
420
420
  'align-items': 'center',
421
421
  'white-space': 'nowrap',
422
- 'overflow': 'hidden',
422
+ overflow: 'hidden',
423
423
  'text-overflow': 'ellipsis',
424
424
  },
425
425
  '.group\\/model .w-select-field': {
@@ -428,20 +428,20 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
428
428
  },
429
429
 
430
430
  '.w-skeleton': {
431
- 'position': 'relative',
432
- 'width': 'var(--skeleton-width,var(--skeleton-width-internal,70%))',
433
- 'height': 'var(--skeleton-height)',
434
- 'border-radius': 'var(--skeleton-rounded,0.5rem)',
435
- 'overflow': 'hidden',
436
- 'cursor': 'progress',
431
+ position: 'relative',
432
+ width: 'var(--skeleton-width,var(--skeleton-width-internal,70%))',
433
+ height: 'var(--skeleton-height)',
434
+ 'border-radius': 'var(--w-skeleton-rounded,0.5rem)',
435
+ overflow: 'hidden',
436
+ cursor: 'progress',
437
437
  '&:not(.w-skeleton-static):before': {
438
- 'content': '""',
439
- 'position': 'absolute',
440
- 'top': '0',
441
- 'width': '100%',
442
- 'height': '100%',
438
+ content: '""',
439
+ position: 'absolute',
440
+ top: '0',
441
+ width: '100%',
442
+ height: '100%',
443
443
  'background-image': 'linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.5), rgba(255,255,255,0))',
444
- 'animation': theme('animation.ticker'),
444
+ animation: theme('animation.ticker'),
445
445
 
446
446
  [config('darkMode')[1][0]]: {
447
447
  'background-image': 'linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.01),rgba(255,255,255,0))',
@@ -450,48 +450,48 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
450
450
  },
451
451
  '.w-skeleton-static': {
452
452
  '& .w-skeleton:before, &.w-skeleton:before': {
453
- 'display': 'none',
454
- 'animation': 'none',
453
+ display: 'none',
454
+ animation: 'none',
455
455
  },
456
456
  },
457
457
  })
458
458
 
459
459
  matchUtilities(
460
460
  {
461
- 'w-skeleton-rounded': (value) => {
461
+ 'w-skeleton-w': value => {
462
462
  return {
463
- '--skeleton-rounded': value,
463
+ '--skeleton-width': value,
464
464
  }
465
465
  },
466
466
  },
467
467
  {
468
- values: theme('borderRadius'),
468
+ values: theme('width'),
469
469
  },
470
470
  )
471
471
 
472
472
  matchUtilities(
473
473
  {
474
- 'w-skeleton-w': (value) => {
475
- return {
476
- '--skeleton-width': value,
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('width'),
480
+ values: theme('height'),
482
481
  },
483
482
  )
484
483
 
485
484
  matchUtilities(
486
485
  {
487
- 'w-skeleton-h': (value) => {
488
- return {
489
- '--skeleton-height': value,
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('height'),
492
+ values: theme('borderRadius'),
495
493
  },
496
494
  )
497
495
  })
496
+
497
+ export default pluginDefault
@@ -1,5 +1,4 @@
1
-
2
- module.exports = {
1
+ export default {
3
2
  keyframes: {
4
3
  ticker: {
5
4
  from: {
@@ -1,5 +1,4 @@
1
-
2
- module.exports = {
1
+ export default {
3
2
  critical: {
4
3
  bg: '#ff73bb30',
5
4
  text: '#f95f95',
@@ -1,5 +1,4 @@
1
-
2
- module.exports = {
1
+ export default {
3
2
  critical: {
4
3
  bg: '#ff757520',
5
4
  text: '#FF7171',
@@ -1,6 +1,5 @@
1
-
2
1
  const extend = {
3
- '1.25': '0.3125rem',
2
+ 1.25: '0.3125rem',
4
3
  6: '1.5rem',
5
4
  10: '2.5rem',
6
5
  11: '2.75rem',
@@ -12,13 +11,13 @@ const extend = {
12
11
  36: '9rem',
13
12
  }
14
13
 
15
- module.exports = {
14
+ export default {
16
15
  height: {
17
- '8.5': '2.125rem',
16
+ 8.5: '2.125rem',
18
17
  18: '4.5rem',
19
18
  },
20
19
  width: {
21
- '8.5': '2.125rem',
20
+ 8.5: '2.125rem',
22
21
  18: '4.5rem',
23
22
  },
24
23
  maxWidth: extend,