bge-ui 1.4.6 → 1.4.8

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/index.d.ts CHANGED
@@ -9,7 +9,7 @@ import UiTabPane from "./tabs/tab-pane.vue";
9
9
  import UiTooltip from "./tooltip/index.vue";
10
10
  import UiMessage from "./message/method.ts";
11
11
  import UiDialog from "./dialog/index.vue";
12
- import UiCheckbox from "./checkBox/index.vue";
12
+ import UiCheckbox from "./checkbox/index.vue";
13
13
  import UiRadio from "./radio/index.vue";
14
14
  import UiSlider from "./slider/index.vue";
15
15
  import UiSelect from "./select/index.vue";
package/dist/style.css CHANGED
@@ -1264,8 +1264,9 @@ to {
1264
1264
  background: var(--bg-notification, #232B33);
1265
1265
  }
1266
1266
  .bge-message.notification {
1267
- transform: translateX(-100%);
1268
- left: calc(100% - 24px);
1267
+ transform: unset;
1268
+ left: unset;
1269
+ right: 24px;
1269
1270
  }
1270
1271
  .bge-message.error p {
1271
1272
  width: calc(100% - 28px);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bge-ui",
3
- "version": "1.4.6",
3
+ "version": "1.4.8",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
package/src/index.ts CHANGED
@@ -10,7 +10,7 @@ import UiTabPane from "./tabs/tab-pane.vue"
10
10
  import UiTooltip from "./tooltip/index.vue"
11
11
  import UiMessage from "./message/method.ts"
12
12
  import UiDialog from "./dialog/index.vue"
13
- import UiCheckbox from "./checkBox/index.vue"
13
+ import UiCheckbox from "./checkbox/index.vue"
14
14
  import UiRadio from "./radio/index.vue"
15
15
  import UiSlider from "./slider/index.vue"
16
16
  import UiSelect from "./select/index.vue"
@@ -148,8 +148,9 @@ defineExpose({
148
148
  background: var(--bg-notification, #232B33);
149
149
 
150
150
  &.notification {
151
- transform: translateX(-100%);
152
- left: calc(100% - 24px);
151
+ transform: unset;
152
+ left: unset;
153
+ right: 24px;
153
154
  }
154
155
 
155
156
  &.info {