d2coreui 21.0.11 → 21.0.12

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 (37) hide show
  1. package/components/color/colorPicker.d.ts +20 -0
  2. package/components/color/colorPicker.js +54 -0
  3. package/components/color/colorPicker.js.map +1 -0
  4. package/components/color/colorUtils.d.ts +2 -0
  5. package/components/color/colorUtils.js +29 -0
  6. package/components/color/colorUtils.js.map +1 -1
  7. package/components/date/dateRangeInput.d.ts +13 -1
  8. package/components/date/dateRangeInput.js +100 -9
  9. package/components/date/dateRangeInput.js.map +1 -1
  10. package/components/date/dateRangeInputAdvancedPanel.d.ts +26 -0
  11. package/components/date/dateRangeInputAdvancedPanel.js +116 -0
  12. package/components/date/dateRangeInputAdvancedPanel.js.map +1 -0
  13. package/components/date/dateRangeInputConfirm.d.ts +11 -1
  14. package/components/date/dateRangeInputConfirm.js +67 -27
  15. package/components/date/dateRangeInputConfirm.js.map +1 -1
  16. package/components/date/dateTimeInput.d.ts +2 -0
  17. package/components/date/dateTimeInput.js +5 -5
  18. package/components/date/dateTimeInput.js.map +1 -1
  19. package/components/grid/cell/simpleStatusTextCellEditor.d.ts +1 -0
  20. package/components/grid/cell/simpleStatusTextCellEditor.js +17 -10
  21. package/components/grid/cell/simpleStatusTextCellEditor.js.map +1 -1
  22. package/components/grid/config/rowStylePicker.d.ts +1 -5
  23. package/components/grid/config/rowStylePicker.js +14 -70
  24. package/components/grid/config/rowStylePicker.js.map +1 -1
  25. package/components/grid/dataGrid.d.ts +1 -1
  26. package/components/grid/dataGrid.js +101 -122
  27. package/components/grid/dataGrid.js.map +1 -1
  28. package/components/grid/extendedDataGrid.d.ts +2 -0
  29. package/components/grid/extendedDataGrid.js +6 -1
  30. package/components/grid/extendedDataGrid.js.map +1 -1
  31. package/components/input/maskedInput.d.ts +3 -3
  32. package/components/scrollTo/scrollTo.d.ts +1 -0
  33. package/components/scrollTo/scrollTo.js +13 -0
  34. package/components/scrollTo/scrollTo.js.map +1 -1
  35. package/i18n/components.sk.json +17 -0
  36. package/package.json +2 -2
  37. package/style/index.less +5 -0
@@ -64,9 +64,26 @@
64
64
  "Table - Rows Styling": "Tabuľka - štýlovanie riadkov",
65
65
  "Text Color": "Farba textu",
66
66
  "The column list is empty": "Zoznam stĺpcov je prázdny",
67
+ "Simple Mode": "Jednoduchý mód",
68
+ "Advanced Mode": "Pokročilý mód",
69
+ "Interval Begin": "Začiatok intervalu",
70
+ "Interval End": "Koniec intervalu",
71
+ "Now": "Teraz",
72
+ "Today": "Dnes",
67
73
  "This Day": "Tento deň",
68
74
  "This Month": "Tento mesiac",
69
75
  "This Week": "Tento týždeň",
76
+ "This Quarter": "Tento štvrťrok",
77
+ "This Year": "Tento rok",
78
+ "Interval Duration": "Trvanie intervalu",
79
+ "Time Shift": "Časový posun",
80
+ "Hour": "Hodina",
81
+ "Day": "Deň",
82
+ "Week": "Týždeň",
83
+ "Month": "Mesiac",
84
+ "Quarter": "Štvrťrok",
85
+ "Year": "Rok",
86
+ "Years": "Roky",
70
87
  "Track last added record to table": "Sledovať naposledy pridaný záznam do tabuľky",
71
88
  "Turn on/off column filter": "Zapnúť/vypnúť filter nad stĺpcami",
72
89
  "Turn on/off filter panel": "Zapnúť/vypnúť panel filtrovania",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "d2coreui",
3
- "version": "21.0.11",
3
+ "version": "21.0.12",
4
4
  "description": "Core UI components and utilities library.",
5
5
  "author": "Ipesoft s.r.o.",
6
6
  "license": "MIT",
@@ -31,7 +31,7 @@
31
31
  "draft-js": "0.11.0",
32
32
  "draftail": "1.4.1",
33
33
  "filtrex": "2.2.3",
34
- "flexlayout-react": "0.6.3",
34
+ "flexlayout-react": "0.6.5",
35
35
  "lodash": "4.17.21",
36
36
  "memoize-one": "6.0.0",
37
37
  "moment": "2.25.3",
package/style/index.less CHANGED
@@ -284,3 +284,8 @@
284
284
  transition: height 500ms;
285
285
  }
286
286
 
287
+ .hoverable-primary-ghost-button:hover {
288
+ color: #fff !important;
289
+ background-color: #1890ff !important;
290
+ transform: scale(1.08);
291
+ }