lost-sia 2.0.1-alpha0 → 2.0.1-alpha2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lost-sia",
3
- "version": "2.0.1-alpha0",
3
+ "version": "2.0.1-alpha2",
4
4
  "description": "Single Image Annotation Tool",
5
5
  "license": "MIT",
6
6
  "repository": "l3p-cv/lost-sia",
@@ -26,10 +26,13 @@
26
26
  "./utils": {
27
27
  "import": "./src/utils/index.js",
28
28
  "require": "./src/utils/index.js"
29
- }
29
+ },
30
+ "./styles/variables": "./src/styles/_variables.scss",
31
+ "./styles/coreui": "./src/styles/coreui.scss"
30
32
  },
31
33
  "files": [
32
- "src"
34
+ "src",
35
+ "styles"
33
36
  ],
34
37
  "scripts": {
35
38
  "build": "vite build",
@@ -1,4 +1,3 @@
1
1
  $gray-base: #092f38 !default;
2
- //$gray-base: rgb(0,255,0) !default;
3
2
  $sidebar-dark-nav-link-hover-bg: #10515f !default;
4
3
  $primary: #092f38 !default;
@@ -0,0 +1,6 @@
1
+ @use "variables" as *;
2
+
3
+ @use "@coreui/coreui/scss/coreui" with (
4
+ $primary: $primary,
5
+ $secondary: $secondary
6
+ );
@@ -0,0 +1 @@
1
+ export { uiConfig, SIA_INITIAL_UI_CONFIG } from "./uiConfig";
@@ -1,3 +0,0 @@
1
- html {
2
- font-size: 1em !important;
3
- }
@@ -1,6 +0,0 @@
1
- .wrapper {
2
- width: 100%;
3
- @include ltr-rtl("padding-left", var(--cui-sidebar-occupy-start, 0));
4
- will-change: auto;
5
- @include transition(padding 0.15s);
6
- }
@@ -1,6 +0,0 @@
1
- .wrapper {
2
- width: 100%;
3
- @include ltr-rtl("padding-left", var(--cui-sidebar-occupy-start, 0));
4
- will-change: auto;
5
- @include transition(padding 0.15s);
6
- }
@@ -1,13 +0,0 @@
1
- // // If you want to override variables do it here
2
- // @import 'variables';
3
-
4
- // // Import CoreUI styles
5
- // @import '@coreui/coreui/scss/coreui.scss';
6
-
7
- // @import "layout";
8
-
9
- // // Some temp fixes
10
- // @import 'fixes';
11
-
12
- // If you want to add something do it here
13
- @import "custom";