@saooti/octopus-sdk 33.2.17 → 33.2.19

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.2.17",
3
+ "version": "33.2.19",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -11,7 +11,7 @@
11
11
  height: 2rem;
12
12
  padding-right: 40px;
13
13
  }
14
- input[type="checkbox"] {
14
+ input[type="checkbox"], input[type="radio"]{
15
15
  accent-color: $octopus-primary-color;
16
16
  cursor: pointer;
17
17
  margin-right: 5px;
@@ -1,18 +1,19 @@
1
1
  <template>
2
2
  <div class="module-box">
3
3
  <h3>{{ $t('Distribute') }}</h3>
4
- <p class="sharing-distribution-container">
4
+ <div class="sharing-distribution-container">
5
5
  {{ $t('Rss feed:') }}
6
- </p><div class="text-primary hide-small-screen text-break">
7
- {{ rss }}
6
+ <div class="text-primary hide-small-screen text-break">
7
+ {{ rss }}
8
+ </div>
9
+ <input
10
+ type="button"
11
+ :value="$t('Copy')"
12
+ class="btn btn-primary"
13
+ :title="$t('Copy')"
14
+ @click="onCopyCode(rss, afterCopy)"
15
+ >
8
16
  </div>
9
- <input
10
- type="button"
11
- :value="$t('Copy')"
12
- class="btn btn-primary"
13
- :title="$t('Copy')"
14
- @click="onCopyCode(rss, afterCopy)"
15
- >
16
17
  <RssSection
17
18
  v-if="emission"
18
19
  :emission="emission"
@@ -43,13 +43,3 @@ export default defineComponent({
43
43
  emits: ['update:textInit'],
44
44
  });
45
45
  </script>
46
- <style lang="scss">
47
- @import '@scss/_variables.scss';
48
- .octopus-app{
49
- input[type="radio"] {
50
- accent-color: $octopus-primary-color;
51
- cursor: pointer;
52
- margin-right: 5px;
53
- }
54
- }
55
- </style>