bge-ui 1.7.3 → 1.7.5

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
@@ -1252,10 +1252,8 @@ to {
1252
1252
  display: inline-block;
1253
1253
  width: 100%;
1254
1254
  vertical-align: middle;
1255
- white-space: nowrap;
1256
1255
  overflow: hidden;
1257
1256
  color: var(--tc-title, #FFF);
1258
- text-overflow: ellipsis;
1259
1257
  font-size: 14px;
1260
1258
  font-style: normal;
1261
1259
  font-weight: 400;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bge-ui",
3
- "version": "1.7.3",
3
+ "version": "1.7.5",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -9,6 +9,9 @@
9
9
  "icons",
10
10
  "src"
11
11
  ],
12
+ "publishConfig": {
13
+ "registry": "https://registry.npmjs.org/"
14
+ },
12
15
  "keywords": [],
13
16
  "author": "",
14
17
  "license": "ISC",
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"
@@ -186,10 +186,8 @@ defineExpose({
186
186
  display: inline-block;
187
187
  width: 100%;
188
188
  vertical-align: middle;
189
- white-space: nowrap;
190
189
  overflow: hidden;
191
190
  color: var(--tc-title, #FFF);
192
- text-overflow: ellipsis;
193
191
  font-size: 14px;
194
192
  font-style: normal;
195
193
  font-weight: 400;
File without changes
File without changes