@saooti/octopus-sdk 33.0.8 → 33.0.9

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": "@saooti/octopus-sdk",
3
- "version": "33.0.8",
3
+ "version": "33.0.9",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -77,4 +77,15 @@
77
77
  .vc-select select{
78
78
  padding: 0 20px 0 8px !important;
79
79
  }
80
+ .vc-date{
81
+ .vc-month,.vc-day,.vc-year{
82
+ color: $octopus-primary-color !important;
83
+ }
84
+ }
85
+ .vc-highlight{
86
+ background-color: $octopus-primary-color !important;
87
+ }
88
+ .vc-select select:focus{
89
+ border-color: $octopus-primary-color !important;
90
+ }
80
91
  }
@@ -116,11 +116,11 @@ body{
116
116
  border-radius: 1rem;
117
117
  flex-grow: 1;
118
118
  overflow: auto;
119
- box-shadow: 0px 12px 48px 6px $primaryColorMoreTransparent !important;
119
+ box-shadow: 0px 12px 48px 6px $primaryColorReallyTransparent !important;
120
120
  @media (max-width: 500px){
121
121
  margin: 0.3rem;
122
122
  padding: 0.8rem;
123
- box-shadow:0px 6px 20px 3px $primaryColorMoreTransparent !important;
123
+ box-shadow:0px 6px 20px 3px $primaryColorReallyTransparent !important;
124
124
  }
125
125
  }
126
126
 
@@ -1,5 +1,4 @@
1
1
  /* Added styles */
2
- @import '../sass/_variables.scss';
3
2
  .octopus-app{
4
3
 
5
4
  .default-multiselect-width {
@@ -1,4 +1,3 @@
1
- @import '../sass/_variables.scss';
2
1
  .octopus-app{
3
2
  .page-box-absolute{
4
3
  position: absolute;
@@ -171,7 +171,7 @@ export default defineComponent({
171
171
  })
172
172
  </script>
173
173
  <style lang="scss">
174
- @import '../../../sass/_variables.scss';
174
+ @import '@scss/_variables.scss';
175
175
  .octopus-app{
176
176
  .category-list-container {
177
177
  display: inline-flex;
@@ -290,7 +290,7 @@ export default defineComponent({
290
290
  </script>
291
291
 
292
292
  <style lang="scss">
293
- @import '../../../sass/_variables.scss';
293
+ @import '@scss/_variables.scss';
294
294
  .octopus-app{
295
295
  .comment-input-container {
296
296
  textarea::placeholder {
@@ -142,7 +142,7 @@ export default defineComponent({
142
142
  </script>
143
143
 
144
144
  <style lang="scss">
145
- @import '../../../sass/_variables.scss';
145
+ @import '@scss/_variables.scss';
146
146
  .octopus-app{
147
147
  .filter-speech-bubble {
148
148
  position: absolute;
@@ -202,7 +202,7 @@ export default defineComponent({
202
202
  });
203
203
  </script>
204
204
  <style lang="scss">
205
- @import '../../../sass/_variables.scss';
205
+ @import '@scss/_variables.scss';
206
206
  .octopus-app .paginate{
207
207
  display: flex;
208
208
  justify-content: flex-end;
@@ -175,7 +175,7 @@ export default defineComponent({
175
175
  })
176
176
  </script>
177
177
  <style lang="scss">
178
- @import '../../../sass/_variables.scss';
178
+ @import '@scss/_variables.scss';
179
179
  .swiper {
180
180
  width: 100%;
181
181
  height: 100%;
@@ -315,7 +315,7 @@ export default defineComponent({
315
315
  </script>
316
316
 
317
317
  <style lang="scss">
318
- @import '../../../sass/_variables.scss';
318
+ @import '@scss/_variables.scss';
319
319
  .octopus-app{
320
320
  .sticker {
321
321
  align-self: center;
@@ -34,7 +34,7 @@ export default defineComponent({
34
34
  })
35
35
  </script>
36
36
  <style lang="scss">
37
- @import '../../../sass/_variables.scss';
37
+ @import '@scss/_variables.scss';
38
38
  .octopus-app{
39
39
  .player-container {
40
40
  .timeline-button {
package/vite.config.js CHANGED
@@ -7,6 +7,7 @@ export default defineConfig({
7
7
  resolve: {
8
8
  alias: {
9
9
  '@': path.resolve(__dirname, './src'),
10
+ '@scss': path.resolve(__dirname, './src/sass'),
10
11
  },
11
12
  },
12
13
  plugins: [