@sapphire-ion/framework 1.0.24 → 1.0.26

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.26",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^18.2.8",
@@ -588,6 +588,10 @@ video {
588
588
  pointer-events: none;
589
589
  }
590
590
 
591
+ .pointer-events-auto {
592
+ pointer-events: auto;
593
+ }
594
+
591
595
  .\!visible {
592
596
  visibility: visible !important;
593
597
  }
@@ -812,6 +816,10 @@ video {
812
816
  z-index: 100;
813
817
  }
814
818
 
819
+ .z-\[200\] {
820
+ z-index: 200;
821
+ }
822
+
815
823
  .order-1 {
816
824
  order: 1;
817
825
  }
@@ -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 pointer-events-none 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 pointer-events-auto #{!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;