@sapphire-ion/framework 1.0.24 → 1.0.25

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.
@@ -81,6 +81,7 @@ export declare class InputSelectDataLoader {
81
81
  AddComponent(component: InputSelectComponent): void;
82
82
  GetLabel(value: any): string;
83
83
  isLoaded: boolean;
84
+ error: boolean;
84
85
  Refresh(items?: any[]): Promise<void>;
85
86
  items: any[];
86
87
  Load(): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapphire-ion/framework",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^18.2.8",
@@ -812,6 +812,10 @@ video {
812
812
  z-index: 100;
813
813
  }
814
814
 
815
+ .z-\[200\] {
816
+ z-index: 200;
817
+ }
818
+
815
819
  .order-1 {
816
820
  order: 1;
817
821
  }
@@ -48,4 +48,13 @@
48
48
  @apply w-full;
49
49
  }
50
50
  }
51
+ }
52
+
53
+ .error-container{
54
+ @apply absolute bottom-0 left-0 size-full opacity-0 -translate-y-12 flex items-center justify-center z-[200];
55
+ will-change: opacity, auto;
56
+ transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
57
+ &.active{
58
+ @apply opacity-100 translate-y-0 #{!important};
59
+ }
51
60
  }
@@ -171,9 +171,9 @@ ion-item{
171
171
  }
172
172
  }
173
173
 
174
- // ion-content{
175
- // @apply bg-transparent;
176
- // }
174
+ ion-content{
175
+ @apply bg-transparent;
176
+ }
177
177
 
178
178
  ion-card{
179
179
  @extend .translucid-border !optional;