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.
- package/components/color/colorPicker.d.ts +20 -0
- package/components/color/colorPicker.js +54 -0
- package/components/color/colorPicker.js.map +1 -0
- package/components/color/colorUtils.d.ts +2 -0
- package/components/color/colorUtils.js +29 -0
- package/components/color/colorUtils.js.map +1 -1
- package/components/date/dateRangeInput.d.ts +13 -1
- package/components/date/dateRangeInput.js +100 -9
- package/components/date/dateRangeInput.js.map +1 -1
- package/components/date/dateRangeInputAdvancedPanel.d.ts +26 -0
- package/components/date/dateRangeInputAdvancedPanel.js +116 -0
- package/components/date/dateRangeInputAdvancedPanel.js.map +1 -0
- package/components/date/dateRangeInputConfirm.d.ts +11 -1
- package/components/date/dateRangeInputConfirm.js +67 -27
- package/components/date/dateRangeInputConfirm.js.map +1 -1
- package/components/date/dateTimeInput.d.ts +2 -0
- package/components/date/dateTimeInput.js +5 -5
- package/components/date/dateTimeInput.js.map +1 -1
- package/components/grid/cell/simpleStatusTextCellEditor.d.ts +1 -0
- package/components/grid/cell/simpleStatusTextCellEditor.js +17 -10
- package/components/grid/cell/simpleStatusTextCellEditor.js.map +1 -1
- package/components/grid/config/rowStylePicker.d.ts +1 -5
- package/components/grid/config/rowStylePicker.js +14 -70
- package/components/grid/config/rowStylePicker.js.map +1 -1
- package/components/grid/dataGrid.d.ts +1 -1
- package/components/grid/dataGrid.js +101 -122
- package/components/grid/dataGrid.js.map +1 -1
- package/components/grid/extendedDataGrid.d.ts +2 -0
- package/components/grid/extendedDataGrid.js +6 -1
- package/components/grid/extendedDataGrid.js.map +1 -1
- package/components/input/maskedInput.d.ts +3 -3
- package/components/scrollTo/scrollTo.d.ts +1 -0
- package/components/scrollTo/scrollTo.js +13 -0
- package/components/scrollTo/scrollTo.js.map +1 -1
- package/i18n/components.sk.json +17 -0
- package/package.json +2 -2
- package/style/index.less +5 -0
package/i18n/components.sk.json
CHANGED
|
@@ -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.
|
|
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.
|
|
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",
|