@finema/core 1.3.30 → 1.3.32

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.3.30",
3
+ "version": "1.3.32",
4
4
  "configKey": "core",
5
5
  "compatibility": {
6
6
  "nuxt": "^3.7.4"
package/dist/module.mjs CHANGED
@@ -2,7 +2,7 @@ import { defineNuxtModule, createResolver, installModule, addPlugin, addComponen
2
2
  import { merge } from 'lodash-es';
3
3
 
4
4
  const name = "@finema/core";
5
- const version = "1.3.30";
5
+ const version = "1.3.32";
6
6
 
7
7
  const colors = {
8
8
  black: "#20243E",
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="fields">
2
+ <div class="fields space-y-4">
3
3
  <template v-for="(option, index) in options" :key="option.props.name + index + option.type">
4
4
  <div v-if="!option.isHide" :class="option.class">
5
5
  <FormInputStatic
@@ -11,4 +11,31 @@
11
11
  --color-primary-900: 32 36 62;
12
12
  --color-primary-950: 32 36 62;
13
13
  --color-primary-DEFAULT: 54 117 251;
14
+
15
+ --dp-font-family: inherit;
14
16
  }
17
+
18
+
19
+ ::-webkit-scrollbar {
20
+ -webkit-appearance: none;
21
+ width: 10px;
22
+ height: 10px;
23
+ }
24
+
25
+ ::-webkit-scrollbar-thumb {
26
+ border-radius: 4px;
27
+ background-color: rgb(0 0 0 / 30%);
28
+ box-shadow: 0 0 1px rgb(255 255 255 / 50%);
29
+ }
30
+
31
+
32
+ html,
33
+ body,
34
+ #__nuxt,
35
+ #__layout,
36
+ .root-container {
37
+ height: 100%;
38
+ display: flex;
39
+ flex-direction: column;
40
+ }
41
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "1.3.30",
3
+ "version": "1.3.32",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Development Team",