@webitel/ui-sdk 1.0.7 → 1.0.11
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/CHANGELOG.md +2 -0
- package/dist/ui-sdk.common.js +2673 -1443
- package/dist/ui-sdk.common.js.map +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.umd.js +2673 -1443
- package/dist/ui-sdk.umd.js.map +1 -1
- package/dist/ui-sdk.umd.min.js +2 -2
- package/dist/ui-sdk.umd.min.js.map +1 -1
- package/package.json +3 -3
- package/src/components/molecules/wt-datepicker/wt-datepicker.vue +130 -133
- package/src/components/molecules/wt-datetimepicker/__tests__/WtDatetimepicker.spec.js +7 -7
- package/src/components/molecules/wt-datetimepicker/wt-datetimepicker.vue +21 -30
- package/src/components/organisms/wt-error-page/wt-error-page.vue +1 -1
- package/src/components/organisms/wt-navigation-bar/wt-navigation-bar.vue +62 -37
- package/src/components/organisms/wt-pagination/wt-pagination.vue +9 -7
- package/src/components/organisms/wt-player/wt-player.vue +2 -2
- package/src/components/organisms/wt-table/wt-table.vue +29 -28
- package/src/components/organisms/wt-table-actions/wt-table-actions.vue +0 -1
- package/src/css/components/molecules/wt-popup/_variables.scss +1 -1
- package/src/css/components/organisms/wt-navigation-bar/_variables.scss +2 -0
- package/src/css/components/organisms/wt-player/_variables.scss +1 -1
- package/src/css/styleguide/colors/_colors.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -21,6 +21,8 @@
|
|
|
21
21
|
1. Removed all deprecated colors variables. Existing components moved to newest ones.
|
|
22
22
|
1. Removed deprecated `--box-shadow` css variable
|
|
23
23
|
1. Removed `strong` typography classes. (`strong` typo -> `subtitle` typo)
|
|
24
|
+
1. Now font-family is used like "Montserrat" (without "Regular" or "Semi"). Boldness
|
|
25
|
+
is regulated by `font-weight` property.
|
|
24
26
|
1. Typo size suffixes update: `-sm`, `-md`, `-lg` -> `-3`, `-2`, `-1`
|
|
25
27
|
1. Removed `--label-margin` variable. Now visual offset between label and input is
|
|
26
28
|
provided by label's line-height
|