@evercam/ui 0.0.32 → 0.0.33

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.
@@ -0,0 +1,6 @@
1
+ import ResizeObserverDirective from '../directives/resize-observer';
2
+ export declare const DirectivesMap: {
3
+ name: string;
4
+ definition: import("vue").ObjectDirective<any, any>;
5
+ }[];
6
+ export { ResizeObserverDirective };
@@ -0,0 +1,6 @@
1
+ import { ObjectDirective } from "vue";
2
+ export interface ObservedElement extends HTMLElement {
3
+ __resizeObserver__?: ResizeObserver;
4
+ }
5
+ declare const ResizeObserverDirective: ObjectDirective;
6
+ export default ResizeObserverDirective;
@@ -176,3 +176,4 @@ export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer };
176
176
  export * from './constants';
177
177
  export * from './types';
178
178
  export * from './utils';
179
+ export * from './directives';
package/dist/styles.css CHANGED
@@ -228,6 +228,9 @@
228
228
  .e-block{
229
229
  display: block;
230
230
  }
231
+ .e-inline-block{
232
+ display: inline-block;
233
+ }
231
234
  .e-flex{
232
235
  display: flex;
233
236
  }
@@ -591,6 +594,9 @@
591
594
  .e-basis-full{
592
595
  flex-basis: 100%;
593
596
  }
597
+ .e-resize{
598
+ resize: both;
599
+ }
594
600
  .e-flex-col{
595
601
  flex-direction: column;
596
602
  }
@@ -734,6 +740,9 @@
734
740
  .e-self-baseline{
735
741
  align-self: baseline;
736
742
  }
743
+ .e-overflow-auto{
744
+ overflow: auto;
745
+ }
737
746
  .e-rounded-full{
738
747
  border-radius: 9999px;
739
748
  }
@@ -743,6 +752,9 @@
743
752
  .e-rounded-md{
744
753
  border-radius: 0.375rem;
745
754
  }
755
+ .e-border{
756
+ border-width: 1px;
757
+ }
746
758
  .e-border-2{
747
759
  border-width: 2px;
748
760
  }
@@ -803,9 +815,16 @@
803
815
  padding-left: 0.25rem;
804
816
  padding-right: 0.25rem;
805
817
  }
818
+ .e-px-4{
819
+ padding-left: 1rem;
820
+ padding-right: 1rem;
821
+ }
806
822
  .e-pb-2{
807
823
  padding-bottom: 0.5rem;
808
824
  }
825
+ .e-pb-4{
826
+ padding-bottom: 1rem;
827
+ }
809
828
  .e-font-mono{
810
829
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
811
830
  }
@@ -870,6 +889,22 @@
870
889
  --tw-text-opacity: 1;
871
890
  color: rgb(0 0 0 / var(--tw-text-opacity));
872
891
  }
892
+ .e-text-blue-300{
893
+ --tw-text-opacity: 1;
894
+ color: rgb(147 197 253 / var(--tw-text-opacity));
895
+ }
896
+ .e-text-blue-400{
897
+ --tw-text-opacity: 1;
898
+ color: rgb(96 165 250 / var(--tw-text-opacity));
899
+ }
900
+ .e-text-green-500{
901
+ --tw-text-opacity: 1;
902
+ color: rgb(34 197 94 / var(--tw-text-opacity));
903
+ }
904
+ .e-text-purple-300{
905
+ --tw-text-opacity: 1;
906
+ color: rgb(216 180 254 / var(--tw-text-opacity));
907
+ }
873
908
  .e-text-rose-500{
874
909
  --tw-text-opacity: 1;
875
910
  color: rgb(244 63 94 / var(--tw-text-opacity));
@@ -878,6 +913,10 @@
878
913
  --tw-text-opacity: 1;
879
914
  color: rgb(255 255 255 / var(--tw-text-opacity));
880
915
  }
916
+ .e-text-yellow-400{
917
+ --tw-text-opacity: 1;
918
+ color: rgb(250 204 21 / var(--tw-text-opacity));
919
+ }
881
920
  .\!e-underline-offset-1{
882
921
  text-underline-offset: 1px !important;
883
922
  }
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "@evercam/ui",
5
- "version": "0.0.32",
5
+ "version": "0.0.33",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -511,6 +511,16 @@
511
511
  }
512
512
  ]
513
513
  }
514
+ ],
515
+ "attributes": [
516
+ {
517
+ "name": "v-resize-observer",
518
+ "source": {
519
+ "module": "./src/directives/resize-observer.ts",
520
+ "symbol": ""
521
+ },
522
+ "description": ""
523
+ }
514
524
  ]
515
525
  }
516
526
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evercam/ui",
3
- "version": "0.0.32",
3
+ "version": "0.0.33",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "author": "Evercam - Constuction Cameras",