ng-tailwind 5.0.1 → 5.0.3

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.
@@ -2250,7 +2250,7 @@ class NgtInputComponent extends NgtBaseNgModel {
2250
2250
  getInputPaddings() {
2251
2251
  let paddingClass = '';
2252
2252
  if (this.innerLeftIcon || this.customInnerContentTemplate) {
2253
- paddingClass += 'pl-7 pr-3 ';
2253
+ paddingClass += 'pl-9 pr-4 ';
2254
2254
  }
2255
2255
  else {
2256
2256
  paddingClass += 'px-4 ';
@@ -6150,8 +6150,8 @@ class NgtButtonComponent {
6150
6150
  this.ngtStyle = new NgtStylizableService();
6151
6151
  }
6152
6152
  this.ngtStyle.load(this.injector, 'NgtButton', {
6153
- px: 'px-3',
6154
- py: 'py-2',
6153
+ px: 'px-2',
6154
+ py: 'py-1',
6155
6155
  text: 'text-xs',
6156
6156
  font: 'font-normal',
6157
6157
  w: 'w-full',
@@ -6173,7 +6173,7 @@ class NgtButtonComponent {
6173
6173
  this.ngtStyle.load(this.injector, 'NgtSuccessButton', {
6174
6174
  color: {
6175
6175
  bg: 'bg-green-500',
6176
- text: 'text-white text-sm',
6176
+ text: 'text-white text-xs',
6177
6177
  }
6178
6178
  });
6179
6179
  }
@@ -6181,7 +6181,7 @@ class NgtButtonComponent {
6181
6181
  this.ngtStyle.load(this.injector, 'NgtWarningButton', {
6182
6182
  color: {
6183
6183
  bg: 'bg-orange-500',
6184
- text: 'text-white text-sm',
6184
+ text: 'text-white text-xs',
6185
6185
  }
6186
6186
  });
6187
6187
  }
@@ -6189,7 +6189,7 @@ class NgtButtonComponent {
6189
6189
  this.ngtStyle.load(this.injector, 'NgtDangerButton', {
6190
6190
  color: {
6191
6191
  bg: 'bg-red-500',
6192
- text: 'text-white text-sm',
6192
+ text: 'text-white text-xs',
6193
6193
  }
6194
6194
  });
6195
6195
  }
@@ -6197,7 +6197,7 @@ class NgtButtonComponent {
6197
6197
  this.ngtStyle.load(this.injector, 'NgtInfoButton', {
6198
6198
  color: {
6199
6199
  bg: 'bg-blue-500',
6200
- text: 'text-white text-sm',
6200
+ text: 'text-white text-xs',
6201
6201
  }
6202
6202
  });
6203
6203
  }