@kws3/ui 2.3.2 → 2.3.4

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,58 +1,64 @@
1
- # 2.3.2
1
+ ## 2.3.4
2
+ - add `black` and `white` as valid color types
3
+
4
+ ## 2.3.3
5
+ - `InfiniteList` - do not fake a scroll event on a resize event, fixes loading bugs
6
+
7
+ ## 2.3.2
2
8
  - `MultiSelect` - fixed issue where raw object were initially outputted (if provided)
3
9
  - `SearchableSelect and `MultiSelect` (Async): resolved issue with the 'active' class not attaching to the most matched item in dropdown options
4
10
  - `SearchableSelect` - improved behavior, ensuring the `tab` key correctly loses focus
5
11
  - `AutoComplete` - dropdown now closes on loss of focus triggered by the `tab` key
6
12
 
7
13
 
8
- # 2.3.1
14
+ ## 2.3.1
9
15
  - `DatePicker` - add support for configurable border radius
10
16
  - `DatePicker` - add support for configurable box shadow
11
17
  - `DatePicker` - bug fix on date range selection colors
12
18
 
13
- # 2.3.0
19
+ ## 2.3.0
14
20
  - New component `InfiniteList` Added
15
21
 
16
- # 2.2.5
22
+ ## 2.2.5
17
23
  - `ScrollableList` - bugfixes, and add support for removing items without affecting scroll position
18
24
 
19
- # 2.2.4
25
+ ## 2.2.4
20
26
  - `ToggleButtons` - add support for count tags, and fix css not applying
21
27
 
22
- # 2.2.3
28
+ ## 2.2.3
23
29
  - `ScrollableList` - add support for custom iteration key for keyed each block
24
30
 
25
- # 2.2.2
31
+ ## 2.2.2
26
32
  - `ScrollableList` - fix jumping issue when edge of scrollable regions are reached
27
33
 
28
- # 2.2.1
34
+ ## 2.2.1
29
35
  - `Icon` fix icon sizes when line-awesome icons are loaded
30
36
  - `Icon` fix material icons when icon family is set globally
31
37
  - `Icon` add support for adding custom icon families
32
38
  - `Chart` fix, ensure ApexCharts is loaded before trying to initialise it
33
39
 
34
- # 2.2.0
40
+ ## 2.2.0
35
41
  - Fix bug where `ScrollableList` component puts extra padding on top of list when fast scroll to top
36
42
  - `ScrollableList` - Fix bug to reset internal positioning props when data changes
37
43
  - fix Popperjs position strategy to work better on mobile by default, affects `SearchableSelect`, `MultiSelect` and `AutoComplete` components
38
44
  - `ActionSheet` - Update styling to make it wokr better visually on desktop
39
45
 
40
- # 2.1.4
46
+ ## 2.1.4
41
47
  - Fix bug where disabled `Checkbox` components wrongly appeared as if they were checked
42
48
  - Allow adding CSS classes to the input field in `NumberInput` component
43
49
 
44
- # 2.1.3
50
+ ## 2.1.3
45
51
  - `PasswordInput` - add support for field `autocomplete` and `required`
46
52
  - `PasswordValidator` - fix `valid` field binding
47
53
 
48
- # 2.1.2
54
+ ## 2.1.2
49
55
  - `PasswordInput` - add support for field `name`
50
56
  - `PasswordInput` - fix spacing when icons are turned off
51
57
 
52
- # 2.1.1
58
+ ## 2.1.1
53
59
  - Package `text-mask-core` moved to @kws3 namespace.
54
60
 
55
- # 2.1.0
61
+ ## 2.1.0
56
62
  - Bugfix with Colorpicker component, where colors could not be typed in manually.
57
63
  - Extended typing and typescript support
58
64
  - New Components added `Canvas`, `ESignature`, `PenInput` and `PenControls`
@@ -131,6 +131,5 @@ while more items are loading
131
131
 
132
132
  const resize = () => {
133
133
  viewport_height = viewport.offsetHeight;
134
- handle_scroll();
135
134
  };
136
135
  </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kws3/ui",
3
- "version": "2.3.2",
3
+ "version": "2.3.4",
4
4
  "description": "UI components for use with Svelte v3 applications.",
5
5
  "main": "index.js",
6
6
  "svelte": "index.js",
@@ -35,5 +35,5 @@
35
35
  "devDependencies": {
36
36
  "typescript": "^5.0.4"
37
37
  },
38
- "gitHead": "87ea45639e414b8f652e3a0457516ad1decb5f4f"
38
+ "gitHead": "164b30a3d4629bd6e6d6919970af9470adaac4ff"
39
39
  }
@@ -7,6 +7,8 @@ export const Colors = [
7
7
  "danger",
8
8
  "dark",
9
9
  "light",
10
+ "white",
11
+ "black",
10
12
  "link",
11
13
  ] as const;
12
14