kwant-ui 3.35.0-alpha.0 → 3.35.1-stable.0

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 (31) hide show
  1. package/dist/components/Charts/AreaChart/AreaChartData.d.ts +2 -2
  2. package/dist/components/Charts/AreaChart/AreaChartStyled.d.ts +3 -0
  3. package/dist/components/Charts/AreaChart/AreaChartTypes.d.ts +2 -0
  4. package/dist/components/Charts/AreaChart/AreaChartUtils.d.ts +7 -2
  5. package/dist/components/Charts/LineChart/LineChartData.d.ts +3 -8
  6. package/dist/components/Charts/LineChart/LineChartTypes.d.ts +1 -0
  7. package/dist/components/Charts/LineChart/LineChartUtils.d.ts +2 -1
  8. package/dist/components/Charts/StackedBarChart/StackedBarChartData.d.ts +5 -14
  9. package/dist/components/Charts/StackedBarChart/StackedBarChartTypes.d.ts +2 -0
  10. package/dist/components/Charts/StackedBarChart/StackedBarChartUtils.d.ts +7 -1
  11. package/dist/components/Charts/WeekwiseBarChart/WeekwiseBarChartTypes.d.ts +1 -0
  12. package/dist/components/Charts/WeekwiseBarChart/WeekwiseBarChartUtils.d.ts +4 -1
  13. package/dist/components/Charts/WorkerTimeChart/WorkerTimeChartData.d.ts +4 -4
  14. package/dist/components/Charts/WorkerTimeChart/WorkerTimeChartTypes.d.ts +2 -0
  15. package/dist/components/Charts/WorkerTimeChart/WorkerTimeChartUtils.d.ts +9 -0
  16. package/dist/components/Datepicker/Datepicker.d.ts +2 -1
  17. package/dist/components/Datepicker/types.d.ts +1 -0
  18. package/dist/components/Dropdown/DropdownTypes.d.ts +1 -0
  19. package/dist/components/DropdownSelect/DropdownSelect.types.d.ts +1 -0
  20. package/dist/components/HoverCalendar/types.d.ts +1 -0
  21. package/dist/components/Select/Select.d.ts +2 -1
  22. package/dist/hooks/useFullScreenFeature.d.ts +5 -0
  23. package/dist/index.es.js +95 -132
  24. package/dist/index.js +95 -132
  25. package/dist/package.json +1 -1
  26. package/dist/themes/colors.ts +5 -4
  27. package/dist/themes/types.d.ts +1 -0
  28. package/dist/utils/formatDate.d.ts +1 -0
  29. package/package.json +1 -1
  30. package/themes/colors.ts +5 -4
  31. package/themes/types.ts +1 -0
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kwant-ui",
3
- "version": "3.33.5-alpha.1",
3
+ "version": "3.35.1-stable.0",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.es.js",
6
6
  "types": "./dist/index.d.ts",
@@ -95,8 +95,8 @@ const colors: Color = {
95
95
  grey300: '#C8D2DE',
96
96
  grey400: '#A1AFC0',
97
97
  grey500: '#798CA4',
98
- grey700: '#5F758F',
99
- grey600: '#616469',
98
+ grey600: '#5F758F',
99
+ grey700: '#455F7B',
100
100
  grey800: '#39526B',
101
101
  grey900: '#1C2E40',
102
102
  grey1000: '#0B1B2A',
@@ -213,8 +213,9 @@ const colors: Color = {
213
213
  thumb: '#9CACC0',
214
214
  },
215
215
  transparent: {
216
- blueHover: 'rgba(16, 63, 232, 0.06)'
217
- }
216
+ blueHover: 'rgba(16, 63, 232, 0.06)',
217
+ transparent: '#ffffff78',
218
+ },
218
219
  };
219
220
 
220
221
  export { colors };
@@ -216,6 +216,7 @@ export interface Scrollbar {
216
216
  }
217
217
  export interface Transparent {
218
218
  blueHover: string;
219
+ transparent: string;
219
220
  }
220
221
  export interface Button {
221
222
  primaryButton: string;
@@ -1 +1,2 @@
1
1
  export declare const formatDate: (date: string, format: string) => string;
2
+ export declare const checkFormatedDate: (date: string, dateFormat: string) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kwant-ui",
3
- "version": "3.35.0-alpha.0",
3
+ "version": "3.35.1-stable.0",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.es.js",
6
6
  "types": "./dist/index.d.ts",
package/themes/colors.ts CHANGED
@@ -95,8 +95,8 @@ const colors: Color = {
95
95
  grey300: '#C8D2DE',
96
96
  grey400: '#A1AFC0',
97
97
  grey500: '#798CA4',
98
- grey700: '#5F758F',
99
- grey600: '#616469',
98
+ grey600: '#5F758F',
99
+ grey700: '#455F7B',
100
100
  grey800: '#39526B',
101
101
  grey900: '#1C2E40',
102
102
  grey1000: '#0B1B2A',
@@ -213,8 +213,9 @@ const colors: Color = {
213
213
  thumb: '#9CACC0',
214
214
  },
215
215
  transparent: {
216
- blueHover: 'rgba(16, 63, 232, 0.06)'
217
- }
216
+ blueHover: 'rgba(16, 63, 232, 0.06)',
217
+ transparent: '#ffffff78',
218
+ },
218
219
  };
219
220
 
220
221
  export { colors };
package/themes/types.ts CHANGED
@@ -236,6 +236,7 @@ export interface Scrollbar {
236
236
 
237
237
  export interface Transparent {
238
238
  blueHover: string;
239
+ transparent: string;
239
240
  }
240
241
 
241
242
  export interface Button {