@winchsa/ui 0.1.16 → 0.1.17

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.
@@ -265,7 +265,7 @@ onBeforeUnmount(() => {
265
265
  }
266
266
 
267
267
  :deep(.v-field__input input) {
268
- text-align: start;
268
+ text-align: start !important;
269
269
  }
270
270
 
271
271
  /* Apply text-align: end when RTL using the :deep modifier */
@@ -49,6 +49,7 @@ declare const headers: import("vue").ComputedRef<{
49
49
  disableIfEmpty?: boolean;
50
50
  maxDate?: Date | null;
51
51
  validateOn?: import("../../types").ValidateOn;
52
+ isAppRtl?: boolean;
52
53
  }[]>;
53
54
  declare const moduleIdentifier: import("vue").ComputedRef<string>;
54
55
  declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
@@ -218,6 +218,7 @@ const placeholder = (header) => {
218
218
  :rules="header.rules"
219
219
  :show-icon="false"
220
220
  :disabled="isDisabled"
221
+ :is-app-rtl="header.isAppRtl"
221
222
  :error-messages="errorMessages"
222
223
  :error="error"
223
224
  append-inner-icon="none"
package/dist/types.d.ts CHANGED
@@ -148,6 +148,7 @@ export type EditableDataTableItem = {
148
148
  disableIfEmpty?: boolean
149
149
  maxDate?: Date | null
150
150
  validateOn?: ValidateOn
151
+ isAppRtl?: boolean
151
152
  }
152
153
 
153
154
  export type OptionItem = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@winchsa/ui",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "publishConfig": {