@nettyapps/ntybase 0.1.17 → 0.1.18

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/index.d.ts CHANGED
@@ -1030,6 +1030,7 @@ declare class NettyFilter {
1030
1030
  declare class NettyMenuService {
1031
1031
  private http;
1032
1032
  private environmentProxy;
1033
+ private i18nService;
1033
1034
  readonly menuName: _angular_core.WritableSignal<string>;
1034
1035
  readonly menu: _angular_core.WritableSignal<any>;
1035
1036
  constructor();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nettyapps/ntybase",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.11",
6
6
  "@angular/core": "^20.3.11"
@@ -39,7 +39,7 @@ mat-sidenav-content {
39
39
 
40
40
  .netty-right-sidenav {
41
41
  width: 50%;
42
- min-width: 750px;
42
+ min-width: 65%;
43
43
  }
44
44
 
45
45
  /** List Component Styles **/
@@ -58,7 +58,6 @@ mat-sidenav-content {
58
58
  display: flex;
59
59
  justify-content: flex-start;
60
60
  margin-bottom: 10px;
61
-
62
61
  }
63
62
 
64
63
  /** Save Record Component Styles **/
@@ -110,12 +109,12 @@ mat-sidenav-content {
110
109
  }
111
110
 
112
111
  .nettybase-form-column {
113
- /* 3 eşit sütun oluşturmak için ana kural */
112
+ /* 3 eşit sütun oluşturmak için ana kural */
114
113
  flex-grow: 0; /* Gerekmedikçe genişleme */
115
114
  flex-shrink: 0; /* Küçülme */
116
-
115
+
117
116
  /* %33.33 genişlikten, yatay boşluğu (gap) dengelemek için biraz düşüyoruz */
118
- width: calc(33.333% - 7px);
117
+ width: calc(33.333% - 7px);
119
118
  max-width: 100%;
120
119
  /* Form öğeleri arasında dikey boşluk ekler */
121
120
  margin-bottom: 20px;
@@ -138,6 +137,17 @@ mat-sidenav-content {
138
137
  max-width: 75%;
139
138
  }
140
139
 
140
+ :host ::ng-deep {
141
+ .mat-mdc-form-field-hint-wrapper {
142
+ background-color: transparent !important;
143
+ }
144
+
145
+ /* Ek olarak, kapsayıcıyı da kontrol etmek isterseniz: */
146
+ .mat-mdc-form-field-subscript-wrapper {
147
+ background-color: wheat !important;
148
+ }
149
+ }
150
+
141
151
  /** Toolbar Styles **/
142
152
  mat-toolbar {
143
153
  justify-content: space-between;
@@ -167,17 +177,25 @@ mat-toolbar {
167
177
  // 2050px'in üzerinde 4 sütuna çıkarmak için
168
178
  .nettybase-form-column {
169
179
  /* 2 eşit sütun */
170
- width: calc(25% - 7.5px);
180
+ width: calc(25% - 7.5px);
171
181
  margin-bottom: 20px; // Dikey boşluğu ayarla
172
182
  }
183
+ .netty-right-sidenav {
184
+ width: 50%;
185
+ min-width: 70%;
186
+ }
173
187
  }
174
188
  @media (max-width: 1024px) {
175
189
  // 1024px'in altında 2 sütuna düşürmek için
176
190
  .nettybase-form-column {
177
191
  /* 2 eşit sütun */
178
- width: calc(50% - 5px);
192
+ width: calc(50% - 5px);
179
193
  margin-bottom: 15px; // Dikey boşluğu ayarla
180
194
  }
195
+ .netty-right-sidenav {
196
+ width: 50%;
197
+ min-width: 55%;
198
+ }
181
199
  }
182
200
  @media (max-width: 600px) {
183
201
  // 600px'in altında 1 sütuna düşürmek için
@@ -192,6 +210,10 @@ mat-toolbar {
192
210
  margin-bottom: 20px;
193
211
  }
194
212
  }
213
+ .netty-right-sidenav {
214
+ width: 50%;
215
+ min-width: 40%;
216
+ }
195
217
  }
196
218
 
197
219
  /** ntyui-button overrides **/
@@ -208,4 +230,4 @@ mat-toolbar {
208
230
  width: 100%;
209
231
  margin-bottom: 10px;
210
232
  }
211
- }
233
+ }