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