@tekkare/auriga 0.1.106 → 0.1.107

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/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.1.106"
7
+ "version": "0.1.107"
8
8
  }
@@ -0,0 +1,30 @@
1
+ <template>
2
+ <div class="arg_section_card">
3
+ <div class="arg_section header" v-if="position === 'top'">
4
+ <slot name="Header" />
5
+ </div>
6
+ <div class="content" :class="position === 'top' ? 'footer' : 'header'">
7
+ <slot />
8
+ </div>
9
+ <div class="arg_section footer" v-if="position === 'bottom'">
10
+ <slot name="Footer" />
11
+ </div>
12
+ </div>
13
+ </template>
14
+
15
+ <script>
16
+ import { defineComponent } from "vue";
17
+ export default defineComponent({
18
+ name: "argSectionCard",
19
+ props: {
20
+ position: {
21
+ type: String,
22
+ default: "top"
23
+ }
24
+ }
25
+ });
26
+ </script>
27
+
28
+ <style scoped>
29
+ .arg_section{align-self:stretch;background:rgba(253,253,255,.8);color:var(--dark);font-size:12px;font-style:normal;font-weight:400;line-height:normal;padding:8px 16px}.arg_section_card{align-items:flex-start;border:1px solid var(--Main-Light,#dbdef0);border-radius:12px;box-shadow:0 6px 8px 0 rgba(30,41,59,.1);display:flex;flex-direction:column}.content{align-self:stretch;background:var(--white);padding:24px}.arg_section.header{border-bottom:1px solid var(--Main-Light,#dbdef0)}.header{border-top-left-radius:12px;border-top-right-radius:12px}.arg_section.footer{border-top:1px solid var(--Main-Light,#dbdef0)}.footer{border-bottom-left-radius:12px;border-bottom-right-radius:12px}
30
+ </style>
@@ -0,0 +1,14 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ position: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ };
6
+ }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
+ position: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ }>>, {
12
+ position: string;
13
+ }, {}>;
14
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.1.106",
3
+ "version": "0.1.107",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",