@vchasno/ui-kit 0.2.7 → 0.2.9

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +52 -27
  2. package/dist/Datepicker/index.cjs.js +10376 -0
  3. package/dist/Datepicker/index.cjs.js.map +1 -0
  4. package/dist/Datepicker/index.js.map +1 -1
  5. package/dist/Datepicker/types/components/BubbleBox/BubbleBox.d.ts +17 -0
  6. package/dist/Datepicker/types/components/BubbleBox/index.d.ts +2 -0
  7. package/dist/Datepicker/types/components/BubbleBox/useClientRect.d.ts +5 -0
  8. package/dist/Datepicker/types/components/BubbleBox/utils.d.ts +1 -0
  9. package/dist/Datepicker/types/components/Pagination/Pagination.d.ts +3 -0
  10. package/dist/Datepicker/types/components/index.d.ts +2 -0
  11. package/dist/Select/index.cjs.js +7746 -0
  12. package/dist/Select/index.cjs.js.map +1 -0
  13. package/dist/Select/index.js +12 -7
  14. package/dist/Select/index.js.map +1 -1
  15. package/dist/Select/types/components/BubbleBox/BubbleBox.d.ts +17 -0
  16. package/dist/Select/types/components/BubbleBox/index.d.ts +2 -0
  17. package/dist/Select/types/components/BubbleBox/useClientRect.d.ts +5 -0
  18. package/dist/Select/types/components/BubbleBox/utils.d.ts +1 -0
  19. package/dist/Select/types/components/Pagination/Pagination.d.ts +3 -0
  20. package/dist/Select/types/components/index.d.ts +2 -0
  21. package/dist/SelectCreatable/index.cjs.js +7835 -0
  22. package/dist/SelectCreatable/index.cjs.js.map +1 -0
  23. package/dist/SelectCreatable/index.js +12 -7
  24. package/dist/SelectCreatable/index.js.map +1 -1
  25. package/dist/SelectCreatable/types/components/BubbleBox/BubbleBox.d.ts +17 -0
  26. package/dist/SelectCreatable/types/components/BubbleBox/index.d.ts +2 -0
  27. package/dist/SelectCreatable/types/components/BubbleBox/useClientRect.d.ts +5 -0
  28. package/dist/SelectCreatable/types/components/BubbleBox/utils.d.ts +1 -0
  29. package/dist/SelectCreatable/types/components/Pagination/Pagination.d.ts +3 -0
  30. package/dist/SelectCreatable/types/components/index.d.ts +2 -0
  31. package/dist/index.d.ts +19 -1
  32. package/dist/index.js +277 -171
  33. package/dist/index.js.map +1 -1
  34. package/dist/types/components/BubbleBox/BubbleBox.d.ts +17 -0
  35. package/dist/types/components/BubbleBox/index.d.ts +2 -0
  36. package/dist/types/components/BubbleBox/useClientRect.d.ts +5 -0
  37. package/dist/types/components/BubbleBox/utils.d.ts +1 -0
  38. package/dist/types/components/Pagination/Pagination.d.ts +3 -0
  39. package/dist/types/components/index.d.ts +2 -0
  40. package/package.json +43 -34
package/CHANGELOG.md CHANGED
@@ -7,110 +7,135 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.9] - 2024-03-03
11
+
12
+ ## Changed
13
+
14
+ - Add gapStep, hideArrows, simple props to Pagination component
15
+
16
+ ## Fixed
17
+
18
+ - fix Pagination item styles
19
+
20
+ ## [0.2.8] - 2024-03-03
21
+
22
+ ## Added
23
+
24
+ - BubbleBox component
25
+
26
+ ## Changed
27
+
28
+ - update dev-dependencies: storybook to 7.6.17, rollup 3.29.4, typescript 5.3.3
29
+
30
+ ## Fixed
31
+
32
+ - fix generate component script
33
+ - fix exports for cjs and esm
34
+
10
35
  ## [0.2.7] - 2024-02-14
11
36
 
12
37
  ## Added
13
38
 
14
- - PulseDot component for smooth user onboardings and call-to-actions
39
+ - PulseDot component for smooth user onboardings and call-to-actions
15
40
 
16
41
  ## [0.2.6] - 2024-02-14
17
42
 
18
43
  ## Fixed
19
44
 
20
- - Replace Switch (EDO style) component with Switcher (not in used yet)
45
+ - Replace Switch (EDO style) component with Switcher (not in used yet)
21
46
 
22
47
  ## [0.2.5] - 2024-02-08
23
48
 
24
49
  ## Fixed
25
50
 
26
- - replace css variables with hardcoded for text input bg, disable colors
27
- - fix textarea font-size, color css props, apply common vars
51
+ - replace css variables with hardcoded for text input bg, disable colors
52
+ - fix textarea font-size, color css props, apply common vars
28
53
 
29
54
  ## [0.2.4] - 2024-01-19
30
55
 
31
56
  ## Fixed
32
57
 
33
- - fix import css warnings, remove type module to allow use moduleResolution: "Node16"/"Bundler"
58
+ - fix import css warnings, remove type module to allow use moduleResolution: "Node16"/"Bundler"
34
59
 
35
60
  ## [0.2.3] - 2024-01-18
36
61
 
37
62
  ## Fixed
38
63
 
39
- - add "type": "module" to package.json, for correct import
64
+ - add "type": "module" to package.json, for correct import
40
65
 
41
66
  ## [0.2.2] - 2024-01-18
42
67
 
43
68
  ## Fixed
44
69
 
45
- - add export SelectOption type from Select, SelectCreatable components
46
- - fix input styles vchasno-ui-input__wrapper height
70
+ - add export SelectOption type from Select, SelectCreatable components
71
+ - fix input styles vchasno-ui-input\_\_wrapper height
47
72
 
48
- - ## [0.2.1] - 2024-01-18
73
+ - ## [0.2.1] - 2024-01-18
49
74
 
50
75
  ## Fixed
51
76
 
52
- - description css exports in package.json
77
+ - description css exports in package.json
53
78
 
54
79
  ## [0.2.0] - 2024-01-18
55
80
 
56
81
  ## Added
57
82
 
58
- - separate package entry point @vchasno/ui-kit/Datepicker
59
- - separate package entry point @vchasno/ui-kit/Select component
60
- - separate package entry point @vchasno/ui-kit/SelectCreatable component
61
- - update README.md (how to use new components)
83
+ - separate package entry point @vchasno/ui-kit/Datepicker
84
+ - separate package entry point @vchasno/ui-kit/Select component
85
+ - separate package entry point @vchasno/ui-kit/SelectCreatable component
86
+ - update README.md (how to use new components)
62
87
 
63
88
  ## [0.1.7] - 2024-01-16
64
89
 
65
90
  ## Added
66
91
 
67
- - improve DatePicker component, add mask properties, add multiple date formats
92
+ - improve DatePicker component, add mask properties, add multiple date formats
68
93
 
69
94
  ## Fixed
70
95
 
71
- - fix typos in package.json
96
+ - fix typos in package.json
72
97
 
73
98
  ## [0.1.6] - 2023-10-23
74
99
 
75
100
  ## Fixed
76
101
 
77
- - fix --vchasno-ui-pagination-size css variable
102
+ - fix --vchasno-ui-pagination-size css variable
78
103
 
79
104
  ## [0.1.5] - 2023-10-19
80
105
 
81
106
  ## Fixed
82
107
 
83
- - fix tabs color (incorrect variable name)
108
+ - fix tabs color (incorrect variable name)
84
109
 
85
110
  ## [0.1.4] - 2023-10-19
86
111
 
87
112
  ## Changed
88
113
 
89
- - add prefix --vchasno-ui for css variables (--{VARIABLE} -> --vchasno-ui-{VARIABLE})
90
- - delete unused css variables
91
- - update README.md (how to override css variables with new prefix)
114
+ - add prefix --vchasno-ui for css variables (--{VARIABLE} -> --vchasno-ui-{VARIABLE})
115
+ - delete unused css variables
116
+ - update README.md (how to override css variables with new prefix)
92
117
 
93
118
  ## [0.1.3] - 2023-10-11
94
119
 
95
120
  ## Added
96
121
 
97
- - update README.md (how to add new component, how to publish new version)
98
- - improve Switch component, add more stories
122
+ - update README.md (how to add new component, how to publish new version)
123
+ - improve Switch component, add more stories
99
124
 
100
125
  ## [0.1.2] - 2023-10-11
101
126
 
102
- ### Added
127
+ ### Added
103
128
 
104
- - export SelectOption type
129
+ - export SelectOption type
105
130
 
106
131
  ## [0.1.1] - 2023-10-11
107
132
 
108
133
  ### Fixed
109
134
 
110
- - remove package.json engine version
135
+ - remove package.json engine version
111
136
 
112
137
  ## [0.1.0] - 2023-10-10
113
138
 
114
139
  ### Added
115
140
 
116
- - first release 0.1.0
141
+ - first release 0.1.0