@fastkit/vui 0.8.18 → 0.10.0
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/LICENSE +21 -0
- package/README.md +4 -1
- package/dist/tool/index.js +16 -23
- package/dist/vui.cjs.js +418 -736
- package/dist/vui.cjs.prod.js +418 -736
- package/dist/vui.css +6 -0
- package/dist/vui.d.ts +108 -75
- package/dist/vui.min.css +1 -1
- package/dist/vui.min.css.map +1 -1
- package/dist/vui.mjs +417 -730
- package/package.json +37 -16
- package/src/components/VBreadcrumbs/VBreadcrumbs.tsx +1 -1
- package/src/components/VBusyImage/VBusyImage.tsx +3 -3
- package/src/components/VButton/VButton.scss +8 -0
- package/src/components/VButton/VButton.tsx +9 -0
- package/src/components/VDataTable/VDataTable.tsx +9 -5
- package/src/components/VListTile/VListTile.tsx +4 -2
- package/src/components/VNavigation/VNavigation.tsx +13 -4
- package/src/components/VNavigation/VNavigationItem.tsx +25 -7
- package/src/components/VSelect/VSelect.tsx +20 -9
- package/src/components/VWysiwygEditor/VWysiwygEditor.tsx +1 -1
- package/src/plugin.tsx +1 -1
- package/src/service.tsx +7 -2
- package/src/styles/core/functions.scss +1 -1
package/dist/vui.css
CHANGED
|
@@ -1288,6 +1288,12 @@ thead th {
|
|
|
1288
1288
|
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), color 1ms;
|
|
1289
1289
|
appearance: none;
|
|
1290
1290
|
}
|
|
1291
|
+
.v-button--align-left {
|
|
1292
|
+
justify-content: flex-start;
|
|
1293
|
+
}
|
|
1294
|
+
.v-button--align-right {
|
|
1295
|
+
justify-content: flex-end;
|
|
1296
|
+
}
|
|
1291
1297
|
.v-button--plain {
|
|
1292
1298
|
color: inherit !important;
|
|
1293
1299
|
}
|