@kws3/ui 2.0.0 → 2.0.1

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.mdx CHANGED
@@ -1,3 +1,6 @@
1
+ ## 2.0.1
2
+ - Hardcoded color bugfix on pagination styles
3
+
1
4
  ## 2.0.0
2
5
  - Add support for custom CSS classes for the table in `GridView` component
3
6
  - Add support for displaying `GridView` table rows in a compact manner using `is_narrow` prop.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kws3/ui",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "UI components for use with Svelte v3 applications.",
5
5
  "main": "index.js",
6
6
  "svelte": "index.js",
@@ -32,5 +32,5 @@
32
32
  "text-mask-core": "^5.1.2",
33
33
  "tippy.js": "^6.3.1"
34
34
  },
35
- "gitHead": "9606d798a4c6d550863290f2c0b6baac3a61a09e"
35
+ "gitHead": "d724cb9ab00f7eba724b874aabfef4cf03ef8e35"
36
36
  }
@@ -1,12 +1,12 @@
1
1
  $kws-pagination-item-color: $text !default;
2
- $kws-pagination-item-background: #fff !default;
2
+ $kws-pagination-item-background: $scheme-main !default;
3
3
  $kws-pagination-item-border: 1px solid $border !default;
4
4
  $kws-pagination-item-hover-color: $kws-pagination-item-color !default;
5
5
  $kws-pagination-item-hover-border: $kws-pagination-item-border !default;
6
- $kws-pagination-item-disabled-background: $white-ter !default;
6
+ $kws-pagination-item-disabled-background: $scheme-main-ter !default;
7
7
  $kws-pagination-item-disabled-color: $grey !default;
8
- $kws-pagination-item-ellipsis-background: $white-bis !default;
9
- $kws-pagination-item-ellipsis-border-color: $grey-lighter !default;
8
+ $kws-pagination-item-ellipsis-background: $scheme-main-ter !default;
9
+ $kws-pagination-item-ellipsis-border-color: $scheme-main-ter !default;
10
10
  $kws-pagination-item-active-background: $success !default;
11
11
  $kws-pagination-item-active-color: findColorInvert(
12
12
  $kws-pagination-item-active-background
@@ -14,7 +14,10 @@ $kws-pagination-item-active-color: findColorInvert(
14
14
 
15
15
  $kws-pagination-frame-box-shadow: 0 0.125rem 0.1875rem rgba(0, 0, 0, 0.1),
16
16
  0 0 0 0.0625rem rgba(0, 0, 0, 0.1) !default;
17
- $kws-pagination-frame-background: linear-gradient(#fff, #fafafa) !default;
17
+ $kws-pagination-frame-background: linear-gradient(
18
+ $scheme-main,
19
+ $scheme-main-ter
20
+ ) !default;
18
21
 
19
22
  .pagination {
20
23
  &.is-small {