@timus-networks/theme 2.4.188 → 2.4.189

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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
3
  "configKey": "themeOptions",
4
- "version": "2.4.187",
4
+ "version": "2.4.188",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
package/dist/module.mjs CHANGED
@@ -11,7 +11,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
11
11
  const __dirname = __cjs_path__.dirname(__filename);
12
12
  const require = __cjs_mod__.createRequire(import.meta.url);
13
13
  const name = "@timus-networks/theme";
14
- const version = "2.4.187";
14
+ const version = "2.4.188";
15
15
  const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
16
16
  const type = "module";
17
17
  const exports = {
@@ -2430,6 +2430,9 @@ body {
2430
2430
  padding: 0;
2431
2431
  min-width: 36px;
2432
2432
  }
2433
+ .el-button:empty::before {
2434
+ margin-left: 0;
2435
+ }
2433
2436
  .el-button:hover {
2434
2437
  color: var(--el-button-hover-text-color);
2435
2438
  border-color: var(--el-button-hover-border-color);
@@ -10686,6 +10689,12 @@ heights > $common-component-size
10686
10689
  margin: 0;
10687
10690
  -webkit-appearance: none;
10688
10691
  }
10692
+ .el-input-number.is-left .el-input__inner {
10693
+ text-align: left;
10694
+ }
10695
+ .el-input-number.is-right .el-input__inner {
10696
+ text-align: right;
10697
+ }
10689
10698
  .el-input-number__increase, .el-input-number__decrease {
10690
10699
  display: flex;
10691
10700
  justify-content: center;
@@ -350,6 +350,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
350
350
  padding: 0;
351
351
  min-width: 36px;
352
352
  }
353
+ .el-button:empty::before {
354
+ margin-left: 0;
355
+ }
353
356
  .el-button:hover {
354
357
  color: var(--el-button-hover-text-color);
355
358
  border-color: var(--el-button-hover-border-color);
@@ -56,6 +56,9 @@ $button-icon-span-gap: map.merge(
56
56
  &:empty {
57
57
  padding: 0;
58
58
  min-width: 36px;
59
+ &::before {
60
+ margin-left: 0;
61
+ }
59
62
  }
60
63
 
61
64
  &:hover {
@@ -1427,6 +1427,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
1427
1427
  padding: 0;
1428
1428
  min-width: 36px;
1429
1429
  }
1430
+ .el-button:empty::before {
1431
+ margin-left: 0;
1432
+ }
1430
1433
  .el-button:hover {
1431
1434
  color: var(--el-button-hover-text-color);
1432
1435
  border-color: var(--el-button-hover-border-color);
@@ -9683,6 +9686,12 @@ heights > $common-component-size
9683
9686
  margin: 0;
9684
9687
  -webkit-appearance: none;
9685
9688
  }
9689
+ .el-input-number.is-left .el-input__inner {
9690
+ text-align: left;
9691
+ }
9692
+ .el-input-number.is-right .el-input__inner {
9693
+ text-align: right;
9694
+ }
9686
9695
  .el-input-number__increase, .el-input-number__decrease {
9687
9696
  display: flex;
9688
9697
  justify-content: center;
@@ -320,6 +320,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
320
320
  margin: 0;
321
321
  -webkit-appearance: none;
322
322
  }
323
+ .el-input-number.is-left .el-input__inner {
324
+ text-align: left;
325
+ }
326
+ .el-input-number.is-right .el-input__inner {
327
+ text-align: right;
328
+ }
323
329
  .el-input-number__increase, .el-input-number__decrease {
324
330
  display: flex;
325
331
  justify-content: center;
@@ -29,6 +29,22 @@
29
29
  }
30
30
  }
31
31
 
32
+ &.is-left {
33
+ .#{$namespace}-input {
34
+ &__inner {
35
+ text-align: left;
36
+ }
37
+ }
38
+ }
39
+
40
+ &.is-right {
41
+ .#{$namespace}-input {
42
+ &__inner {
43
+ text-align: right;
44
+ }
45
+ }
46
+ }
47
+
32
48
  @include e((increase, decrease)) {
33
49
  display: flex;
34
50
  justify-content: center;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "2.4.188",
3
+ "version": "2.4.189",
4
4
  "description": "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.",
5
5
  "type": "module",
6
6
  "exports": {