@idevs/corelib 0.0.96 → 1.0.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.
- package/CHANGELOG.md +737 -0
- package/README.md +221 -24
- package/dist/editors/checkboxButtonEditor.d.ts +3 -1
- package/dist/editors/checkboxButtonEditor.d.ts.map +1 -0
- package/dist/editors/checkboxButtonEditor.js +28 -18
- package/dist/editors/checkboxButtonEditor.js.map +1 -1
- package/dist/editors/dateMonthEditor.d.ts +3 -1
- package/dist/editors/dateMonthEditor.d.ts.map +1 -0
- package/dist/editors/dateMonthEditor.js +14 -7
- package/dist/editors/dateMonthEditor.js.map +1 -1
- package/dist/editors/index.d.ts +2 -1
- package/dist/editors/index.d.ts.map +1 -0
- package/dist/editors/index.js +18 -2
- package/dist/editors/index.js.map +1 -1
- package/dist/formatters/formatters.d.ts +2 -1
- package/dist/formatters/formatters.d.ts.map +1 -0
- package/dist/formatters/formatters.js +39 -25
- package/dist/formatters/formatters.js.map +1 -1
- package/dist/formatters/index.d.ts +2 -1
- package/dist/formatters/index.d.ts.map +1 -0
- package/dist/formatters/index.js +17 -1
- package/dist/formatters/index.js.map +1 -1
- package/dist/globals/index.d.ts +16 -9
- package/dist/globals/index.d.ts.map +1 -0
- package/dist/globals/index.js +65 -105
- package/dist/globals/index.js.map +1 -1
- package/dist/helpers/custom-fonts.d.ts +4 -0
- package/dist/helpers/custom-fonts.d.ts.map +1 -0
- package/dist/helpers/custom-fonts.js +14 -0
- package/dist/helpers/custom-fonts.js.map +1 -0
- package/dist/helpers/dialogHelper.d.ts +6 -9
- package/dist/helpers/dialogHelper.d.ts.map +1 -0
- package/dist/helpers/dialogHelper.js +17 -10
- package/dist/helpers/dialogHelper.js.map +1 -1
- package/dist/helpers/excelExportHelper.d.ts +2 -1
- package/dist/helpers/excelExportHelper.d.ts.map +1 -0
- package/dist/helpers/excelExportHelper.js +7 -4
- package/dist/helpers/excelExportHelper.js.map +1 -1
- package/dist/helpers/gridHelper.d.ts +2 -1
- package/dist/helpers/gridHelper.d.ts.map +1 -0
- package/dist/helpers/gridHelper.js +14 -9
- package/dist/helpers/gridHelper.js.map +1 -1
- package/dist/helpers/index.d.ts +2 -1
- package/dist/helpers/index.d.ts.map +1 -0
- package/dist/helpers/index.js +20 -4
- package/dist/helpers/index.js.map +1 -1
- package/dist/helpers/pdfExportHelper.d.ts +10 -1
- package/dist/helpers/pdfExportHelper.d.ts.map +1 -0
- package/dist/helpers/pdfExportHelper.js +169 -7
- package/dist/helpers/pdfExportHelper.js.map +1 -1
- package/dist/index.d.ts +5 -2
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +26 -5
- package/dist/index.js.map +1 -1
- package/dist/types/common.d.ts +12 -0
- package/dist/types/common.d.ts.map +1 -0
- package/dist/types/common.js +3 -0
- package/dist/types/common.js.map +1 -0
- package/dist/types/export.d.ts +50 -0
- package/dist/types/export.d.ts.map +1 -0
- package/dist/types/export.js +24 -0
- package/dist/types/export.js.map +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +19 -0
- package/dist/types/index.js.map +1 -0
- package/dist/ui/DropdownToolButton.d.ts +2 -1
- package/dist/ui/DropdownToolButton.d.ts.map +1 -0
- package/dist/ui/DropdownToolButton.js +15 -11
- package/dist/ui/DropdownToolButton.js.map +1 -1
- package/dist/ui/ToggleToolButton.d.ts +2 -1
- package/dist/ui/ToggleToolButton.d.ts.map +1 -0
- package/dist/ui/ToggleToolButton.js +7 -3
- package/dist/ui/ToggleToolButton.js.map +1 -1
- package/dist/ui/index.d.ts +2 -1
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/ui/index.js +18 -2
- package/dist/ui/index.js.map +1 -1
- package/dist/utils/date.d.ts +16 -0
- package/dist/utils/date.d.ts.map +1 -0
- package/dist/utils/date.js +85 -0
- package/dist/utils/date.js.map +1 -0
- package/dist/utils/dom.d.ts +13 -0
- package/dist/utils/dom.d.ts.map +1 -0
- package/dist/utils/dom.js +78 -0
- package/dist/utils/dom.js.map +1 -0
- package/dist/utils/format.d.ts +22 -0
- package/dist/utils/format.d.ts.map +1 -0
- package/dist/utils/format.js +100 -0
- package/dist/utils/format.js.map +1 -0
- package/dist/utils/index.d.ts +4 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +20 -0
- package/dist/utils/index.js.map +1 -0
- package/package.json +49 -26
- package/dist/ui/ToolDropdownButton.d.ts +0 -49
- package/dist/ui/ToolDropdownButton.js +0 -230
- package/dist/ui/ToolDropdownButton.js.map +0 -1
- package/src/editors/checkboxButtonEditor.ts +0 -184
- package/src/editors/dateMonthEditor.ts +0 -47
- package/src/editors/index.ts +0 -2
- package/src/formatters/formatters.ts +0 -181
- package/src/formatters/index.ts +0 -1
- package/src/globals/index.ts +0 -385
- package/src/helpers/dialogHelper.ts +0 -143
- package/src/helpers/excelExportHelper.ts +0 -29
- package/src/helpers/gridHelper.ts +0 -107
- package/src/helpers/html2pdf.d.ts +0 -19
- package/src/helpers/index.ts +0 -4
- package/src/helpers/pdfExportHelper.ts +0 -63
- package/src/index.ts +0 -5
- package/src/tsconfig.json +0 -29
- package/src/ui/DropdownToolButton.ts +0 -305
- package/src/ui/ToggleToolButton.ts +0 -71
- package/src/ui/index.ts +0 -2
- /package/{css → dist/css}/idevs.dropdown.css +0 -0
- /package/{css → dist/css}/idevs.print.css +0 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,737 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [1.0.0] - 2024-08-16
|
|
9
|
+
|
|
10
|
+
> **BREAKING CHANGES**: This is a major refactoring release with breaking changes. See migration guide below.
|
|
11
|
+
|
|
12
|
+
### 📦 Dependencies Updated - 2024-08-16
|
|
13
|
+
|
|
14
|
+
#### Major Updates
|
|
15
|
+
|
|
16
|
+
- **ESLint**: Updated from v8.57.0 to v9.33.0 with new flat config format
|
|
17
|
+
- **jsPDF**: Updated from v2.5.1 to v3.0.1 (major version update)
|
|
18
|
+
- **Prettier**: Updated from v2.8.8 to v3.6.2 (major version update)
|
|
19
|
+
- **TypeScript**: Updated from v5.5.4 to v5.9.2
|
|
20
|
+
|
|
21
|
+
#### Updated Dependencies
|
|
22
|
+
|
|
23
|
+
- `@serenity-is/corelib`: 8.6.2 → 8.8.6
|
|
24
|
+
- `@serenity-is/sleekgrid`: 1.9.0 → 1.9.6
|
|
25
|
+
- `@serenity-is/tsbuild`: 8.6.0 → 8.8.7
|
|
26
|
+
- `@types/jquery`: 3.5.29 → 3.5.32
|
|
27
|
+
- `@types/jquery.validation`: 1.16.10 → 1.17.0
|
|
28
|
+
- `@types/jqueryui`: 1.12.22 → 1.12.24
|
|
29
|
+
- `@types/pdfmake`: 0.2.9 → 0.2.11
|
|
30
|
+
- `@typescript-eslint/eslint-plugin`: 5.62.0 → 8.39.1
|
|
31
|
+
- `@typescript-eslint/parser`: 5.62.0 → 8.39.1
|
|
32
|
+
- `@typescript-eslint/typescript-estree`: 8.1.0 → 8.39.1
|
|
33
|
+
- `bootstrap`: 5.3.3 → 5.3.7
|
|
34
|
+
- `eslint-config-prettier`: 8.10.0 → 10.1.8
|
|
35
|
+
- `html-to-pdfmake`: 2.5.13 → 2.5.30
|
|
36
|
+
- `html2pdf.js`: 0.10.2 → 0.10.3
|
|
37
|
+
- `pdfmake`: 0.2.12 → 0.2.20
|
|
38
|
+
|
|
39
|
+
#### Configuration Changes
|
|
40
|
+
|
|
41
|
+
- **Migrated to ESLint v9 flat configuration format**
|
|
42
|
+
- Created new `eslint.config.js` replacing `.eslintrc`
|
|
43
|
+
- Updated all npm scripts to work with new ESLint
|
|
44
|
+
- Fixed security vulnerability in `brace-expansion` dependency
|
|
45
|
+
|
|
46
|
+
#### Benefits
|
|
47
|
+
|
|
48
|
+
- Latest security fixes and performance improvements
|
|
49
|
+
- Enhanced TypeScript support with newer versions
|
|
50
|
+
- Better linting with updated ESLint rules
|
|
51
|
+
- Improved PDF generation with jsPDF v3
|
|
52
|
+
|
|
53
|
+
### 🔄 Major Refactoring
|
|
54
|
+
|
|
55
|
+
#### Added
|
|
56
|
+
|
|
57
|
+
- **New modular structure** with separate utility modules:
|
|
58
|
+
- `utils/date` - Date manipulation utilities
|
|
59
|
+
- `utils/dom` - DOM manipulation utilities
|
|
60
|
+
- `utils/format` - String and number formatting utilities
|
|
61
|
+
- `types/common` - Common type definitions
|
|
62
|
+
- `types/export` - Export-related types and functions
|
|
63
|
+
- **Modern build configuration**:
|
|
64
|
+
- Updated package.json with proper exports field
|
|
65
|
+
- Modern TypeScript configuration with strict mode
|
|
66
|
+
- Enhanced ESLint rules with type checking
|
|
67
|
+
- Updated Prettier configuration
|
|
68
|
+
- **Improved documentation**:
|
|
69
|
+
- Comprehensive README with API examples
|
|
70
|
+
- Migration guide for breaking changes
|
|
71
|
+
- TypeScript configuration examples
|
|
72
|
+
|
|
73
|
+
#### Changed
|
|
74
|
+
|
|
75
|
+
- **Package structure**:
|
|
76
|
+
- Main entry point now points to `dist/index.js` instead of `src/index.js`
|
|
77
|
+
- Added proper TypeScript declaration files output
|
|
78
|
+
- Moved type definitions to devDependencies where appropriate
|
|
79
|
+
- **Code organization**:
|
|
80
|
+
- Separated concerns with dedicated utility modules
|
|
81
|
+
- Improved type safety with strict TypeScript settings
|
|
82
|
+
- Better naming conventions (camelCase functions)
|
|
83
|
+
- Enhanced error handling and null checks
|
|
84
|
+
- **Build system**:
|
|
85
|
+
- Updated build scripts for modern workflow
|
|
86
|
+
- Added development scripts (watch, typecheck, etc.)
|
|
87
|
+
- Improved dependency management
|
|
88
|
+
|
|
89
|
+
#### Deprecated
|
|
90
|
+
|
|
91
|
+
- **Prototype extensions**: While still functional, users are encouraged to use utility functions directly:
|
|
92
|
+
- `String.prototype.truncate` → `truncateString()`
|
|
93
|
+
- `Number.prototype.toTimeString` → `toTimeString()`
|
|
94
|
+
- `Date.prototype.toSqlDate` → `toSqlDateString()`
|
|
95
|
+
- And more...
|
|
96
|
+
|
|
97
|
+
#### Fixed
|
|
98
|
+
|
|
99
|
+
- **Type safety issues**: Resolved TypeScript strict mode violations
|
|
100
|
+
- **Import/export consistency**: Standardized module exports
|
|
101
|
+
- **Code quality**: Fixed ESLint violations and improved code style
|
|
102
|
+
- **Build issues**: Resolved package.json configuration problems
|
|
103
|
+
|
|
104
|
+
### 📦 Technical Improvements
|
|
105
|
+
|
|
106
|
+
- **Dependencies**: Updated and reorganized dependencies
|
|
107
|
+
- **TypeScript**: Enabled strict mode and modern compiler options
|
|
108
|
+
- **ESLint**: Added comprehensive rules with type checking
|
|
109
|
+
- **Prettier**: Updated formatting configuration
|
|
110
|
+
- **Documentation**: Added comprehensive API documentation and examples
|
|
111
|
+
|
|
112
|
+
### 🔧 Developer Experience
|
|
113
|
+
|
|
114
|
+
- **Better IDE support**: Improved TypeScript definitions and imports
|
|
115
|
+
- **Enhanced debugging**: Better source maps and declaration maps
|
|
116
|
+
- **Modern tooling**: Updated build tools and configurations
|
|
117
|
+
- **Clear structure**: Organized code into logical modules
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
## Previous versions
|
|
122
|
+
|
|
123
|
+
_For versions prior to this refactoring, please refer to the git commit history._
|
|
124
|
+
|
|
125
|
+
# Changelog
|
|
126
|
+
|
|
127
|
+
## 0.1.0 (2025-07-)
|
|
128
|
+
|
|
129
|
+
### Updates
|
|
130
|
+
|
|
131
|
+
## 0.0.97 (2024-09-08)
|
|
132
|
+
|
|
133
|
+
### Add
|
|
134
|
+
|
|
135
|
+
- Add makePdf function based on html-to-pdfmake and pdfmake
|
|
136
|
+
|
|
137
|
+
## 0.0.96 (2024-09-03)
|
|
138
|
+
|
|
139
|
+
### Add
|
|
140
|
+
|
|
141
|
+
- Add IdevsContentResponse
|
|
142
|
+
|
|
143
|
+
## 0.0.95 (2024-09-03)
|
|
144
|
+
|
|
145
|
+
### Add
|
|
146
|
+
|
|
147
|
+
- Add generatePdf function based on jspdf and html2pdf.js
|
|
148
|
+
|
|
149
|
+
## 0.0.94 (2024-08-16)
|
|
150
|
+
|
|
151
|
+
### Updates
|
|
152
|
+
|
|
153
|
+
- Update Serenity to version 8.6.2 and also update all library
|
|
154
|
+
- Update formatter
|
|
155
|
+
|
|
156
|
+
## 0.0.93 (2024-04-05)
|
|
157
|
+
|
|
158
|
+
### Fixes
|
|
159
|
+
|
|
160
|
+
- Change target environment to ES2020
|
|
161
|
+
|
|
162
|
+
## 0.0.92 (2024-04-05)
|
|
163
|
+
|
|
164
|
+
### Updates
|
|
165
|
+
|
|
166
|
+
- Update library
|
|
167
|
+
- Remove unused declaration
|
|
168
|
+
|
|
169
|
+
## 0.0.91 (2024-01-27)
|
|
170
|
+
|
|
171
|
+
### Updates
|
|
172
|
+
|
|
173
|
+
- Update Serenity to version 8.2.2
|
|
174
|
+
- Update editor and formatter related to the changes from Serenity
|
|
175
|
+
|
|
176
|
+
## 0.0.90 (2024-01-13)
|
|
177
|
+
|
|
178
|
+
### Updates
|
|
179
|
+
|
|
180
|
+
- Remove @types/bootstrap that no used
|
|
181
|
+
|
|
182
|
+
## 0.0.89 (2024-01-13)
|
|
183
|
+
|
|
184
|
+
### Changes
|
|
185
|
+
|
|
186
|
+
- Update serenity to version 8.1.5
|
|
187
|
+
- Remove support aggregate columns on ExcelExporter because it's cause performance issue
|
|
188
|
+
|
|
189
|
+
## 0.0.88 (2023-12-23)
|
|
190
|
+
|
|
191
|
+
### Updates
|
|
192
|
+
|
|
193
|
+
- Remove click function from DropdownToolButton. No need to manipulate dropdown toggle here.
|
|
194
|
+
|
|
195
|
+
## 0.0.87 (2023-12-23)
|
|
196
|
+
|
|
197
|
+
### Updates
|
|
198
|
+
|
|
199
|
+
- Update DropDownToolButton to use manual dropdown instead of bootstrap script
|
|
200
|
+
|
|
201
|
+
## 0.0.86 (2023-10-26)
|
|
202
|
+
|
|
203
|
+
### Updates
|
|
204
|
+
|
|
205
|
+
- Add space after comma for CheckBoxButtonEditor to be easy to wrap line
|
|
206
|
+
|
|
207
|
+
## 0.0.85 (2023-10-23)
|
|
208
|
+
|
|
209
|
+
### Updates
|
|
210
|
+
|
|
211
|
+
- Add option isStringId to correct mapping value
|
|
212
|
+
|
|
213
|
+
## 0.0.84 (2023-10-23)
|
|
214
|
+
|
|
215
|
+
### Updates
|
|
216
|
+
|
|
217
|
+
- Add property to CheckBoxButtonEditor that can get items or set items to update rendering output
|
|
218
|
+
|
|
219
|
+
## 0.0.83 (2023-10-15)
|
|
220
|
+
|
|
221
|
+
### Updates
|
|
222
|
+
|
|
223
|
+
- Add PageSizes enum, PageOrientations enum
|
|
224
|
+
- Add PageSize
|
|
225
|
+
- Update IdevsExportRequest
|
|
226
|
+
|
|
227
|
+
## 0.0.82 (2023-10-14)
|
|
228
|
+
|
|
229
|
+
### Updates
|
|
230
|
+
|
|
231
|
+
- Update IDevsExportRequest by add new property PageSize and PageMargin
|
|
232
|
+
|
|
233
|
+
## 0.0.81 (2023-10-13)
|
|
234
|
+
|
|
235
|
+
### Fixed
|
|
236
|
+
|
|
237
|
+
- Fixed DropdownToolButton not show dropdown when click. It's because the bootstrap
|
|
238
|
+
|
|
239
|
+
## 0.0.80 (2023-08-14)
|
|
240
|
+
|
|
241
|
+
### Updated
|
|
242
|
+
|
|
243
|
+
- Remove GetModal boostrap because it block serenity menu
|
|
244
|
+
|
|
245
|
+
## 0.0.79 (2023-07-29)
|
|
246
|
+
|
|
247
|
+
### Fixed
|
|
248
|
+
|
|
249
|
+
- Rollback to 0.0.73 and add toString()
|
|
250
|
+
|
|
251
|
+
## 0.0.78 (2023-07-28)
|
|
252
|
+
|
|
253
|
+
### Fixed
|
|
254
|
+
|
|
255
|
+
- Fixed error LookupFormatter again
|
|
256
|
+
|
|
257
|
+
## 0.0.77 (2023-07-28)
|
|
258
|
+
|
|
259
|
+
### Test
|
|
260
|
+
|
|
261
|
+
## 0.0.76 (2023-07-28)
|
|
262
|
+
|
|
263
|
+
### Fixed
|
|
264
|
+
|
|
265
|
+
- Fixed error LookupFormatter again
|
|
266
|
+
|
|
267
|
+
## 0.0.75 (2023-07-28)
|
|
268
|
+
|
|
269
|
+
### Fixed
|
|
270
|
+
|
|
271
|
+
- Fixed error LookupFormatter
|
|
272
|
+
|
|
273
|
+
## 0.0.74 (2023-07-28)
|
|
274
|
+
|
|
275
|
+
### Updated
|
|
276
|
+
|
|
277
|
+
- Change lookup formatter to use getLookupAsync
|
|
278
|
+
|
|
279
|
+
## 0.0.73 (2023-07-07)
|
|
280
|
+
|
|
281
|
+
### Updated
|
|
282
|
+
|
|
283
|
+
- Update DateMonthEditor to support uppercase
|
|
284
|
+
|
|
285
|
+
## 0.0.72 (2023-06-14)
|
|
286
|
+
|
|
287
|
+
### Fixed
|
|
288
|
+
|
|
289
|
+
- Fixed null exception error for updateDateProxyValue
|
|
290
|
+
|
|
291
|
+
## 0.0.71 (2023-06-14)
|
|
292
|
+
|
|
293
|
+
### Updated
|
|
294
|
+
|
|
295
|
+
- Merge addDateProxyInput and addDateQuickFilterProxy into addDateProxyInput
|
|
296
|
+
- Add dateDateProxyInputOption
|
|
297
|
+
|
|
298
|
+
## 0.0.70 (2023-06-14)
|
|
299
|
+
|
|
300
|
+
### Updated
|
|
301
|
+
|
|
302
|
+
- Update add date proxy value default locale to en-GB
|
|
303
|
+
|
|
304
|
+
## 0.0.69 (2023-06-14)
|
|
305
|
+
|
|
306
|
+
### Added
|
|
307
|
+
|
|
308
|
+
- Add support to add date proxy input background color for enabled and disabled/readonly
|
|
309
|
+
|
|
310
|
+
## 0.0.68 (2023-06-14)
|
|
311
|
+
|
|
312
|
+
### Fixed
|
|
313
|
+
|
|
314
|
+
- Fixed proxy element is null when find by id so have to find by name also
|
|
315
|
+
|
|
316
|
+
## 0.0.67 (2023-06-14)
|
|
317
|
+
|
|
318
|
+
### Updates
|
|
319
|
+
|
|
320
|
+
- Update updateDateProxyValue to support date and string
|
|
321
|
+
|
|
322
|
+
## 0.0.66 (2023-06-13)
|
|
323
|
+
|
|
324
|
+
### Updates
|
|
325
|
+
|
|
326
|
+
- Rename doProxyInput to addDateProxyInput
|
|
327
|
+
- Add updateDateProxyValue
|
|
328
|
+
|
|
329
|
+
## 0.0.65 (2023-06-07)
|
|
330
|
+
|
|
331
|
+
### Added
|
|
332
|
+
|
|
333
|
+
- Add google font to idevs.print.css
|
|
334
|
+
|
|
335
|
+
## 0.0.64 (2023-06-05)
|
|
336
|
+
|
|
337
|
+
### Added
|
|
338
|
+
|
|
339
|
+
- Add function find begin month and end month
|
|
340
|
+
|
|
341
|
+
## 0.0.63 (2023-06-03)
|
|
342
|
+
|
|
343
|
+
### Added
|
|
344
|
+
|
|
345
|
+
- Add conditionRange to IdevsExportRequest
|
|
346
|
+
|
|
347
|
+
## 0.0.62 (2023-06-01)
|
|
348
|
+
|
|
349
|
+
### Changes
|
|
350
|
+
|
|
351
|
+
- rename and remove talbe theme property on IdevsExportRequest
|
|
352
|
+
|
|
353
|
+
## 0.0.61 (2023-06-01)
|
|
354
|
+
|
|
355
|
+
### Added
|
|
356
|
+
|
|
357
|
+
- Add support customize table theme style for ExcelExporter
|
|
358
|
+
- Add more css
|
|
359
|
+
|
|
360
|
+
## 0.0.60 (2023-05-31)
|
|
361
|
+
|
|
362
|
+
### Updates
|
|
363
|
+
|
|
364
|
+
- Add GROUP to AggregateType enum
|
|
365
|
+
|
|
366
|
+
## 0.0.59 (2023-05-27)
|
|
367
|
+
|
|
368
|
+
### Updates
|
|
369
|
+
|
|
370
|
+
- Update function updateDateQuickFilterProxyValue to return empty string when value is null
|
|
371
|
+
|
|
372
|
+
## 0.0.58 (2023-05-27)
|
|
373
|
+
|
|
374
|
+
### Updates
|
|
375
|
+
|
|
376
|
+
- Change property columnName of IdevsExportRequest to optional
|
|
377
|
+
|
|
378
|
+
## 0.0.57 (2023-05-27)
|
|
379
|
+
|
|
380
|
+
### Fixed
|
|
381
|
+
|
|
382
|
+
- Fixed optional parameter for ExportOptions
|
|
383
|
+
|
|
384
|
+
## 0.0.56 (2023-05-27)
|
|
385
|
+
|
|
386
|
+
### Fixed
|
|
387
|
+
|
|
388
|
+
- Fixed passing parameter from ExportOptions to IdevsExportRequest
|
|
389
|
+
|
|
390
|
+
## 0.0.55 (2023-05-26)
|
|
391
|
+
|
|
392
|
+
### Fixed
|
|
393
|
+
|
|
394
|
+
- Fixed mis-spell
|
|
395
|
+
|
|
396
|
+
## 0.0.54 (2023-05-26)
|
|
397
|
+
|
|
398
|
+
### Updates
|
|
399
|
+
|
|
400
|
+
- Added aggregateColumns property for aggregate column on summary row
|
|
401
|
+
- Remove unnecessary property for ExcelExportRequest
|
|
402
|
+
|
|
403
|
+
## 0.0.53 (2023-05-24)
|
|
404
|
+
|
|
405
|
+
### Fixed
|
|
406
|
+
|
|
407
|
+
- Chane property type in IdevsExportRequest
|
|
408
|
+
|
|
409
|
+
## 0.0.52 (2023-05-24)
|
|
410
|
+
|
|
411
|
+
### Updates
|
|
412
|
+
|
|
413
|
+
- Add property to IdevsExportRequest
|
|
414
|
+
|
|
415
|
+
## 0.0.51 (2023-05-20)
|
|
416
|
+
|
|
417
|
+
### Updates
|
|
418
|
+
|
|
419
|
+
- Update CSS
|
|
420
|
+
|
|
421
|
+
## 0.0.50 (2023-05-18)
|
|
422
|
+
|
|
423
|
+
### Fixed
|
|
424
|
+
|
|
425
|
+
- Fixed bug for function toDecimal and toNumber
|
|
426
|
+
|
|
427
|
+
## 0.0.49 (2023-05-13)
|
|
428
|
+
|
|
429
|
+
### Updates
|
|
430
|
+
|
|
431
|
+
- Update CSS
|
|
432
|
+
|
|
433
|
+
## 0.0.48 (2023-05-11)
|
|
434
|
+
|
|
435
|
+
### Updates
|
|
436
|
+
|
|
437
|
+
- Update CSS
|
|
438
|
+
|
|
439
|
+
## 0.0.47 (2023-05-11)
|
|
440
|
+
|
|
441
|
+
### Updates
|
|
442
|
+
|
|
443
|
+
- Update CSS
|
|
444
|
+
|
|
445
|
+
## 0.0.46 (2023-04-15)
|
|
446
|
+
|
|
447
|
+
### Updates
|
|
448
|
+
|
|
449
|
+
- Update css
|
|
450
|
+
|
|
451
|
+
## 0.0.45 (2023-04-15)
|
|
452
|
+
|
|
453
|
+
### Updates
|
|
454
|
+
|
|
455
|
+
- Remove convertToDateString
|
|
456
|
+
- Add dateStrignOption() to get default Intl.DateTimeFormatOptions
|
|
457
|
+
|
|
458
|
+
## 0.0.44 (2023-04-15)
|
|
459
|
+
|
|
460
|
+
### Fixed
|
|
461
|
+
|
|
462
|
+
- Fixed pdfExportHelper and excelExportHelper
|
|
463
|
+
- rename toLocaleString to convertToLocaleString
|
|
464
|
+
|
|
465
|
+
## 0.0.43 (2023-04-14)
|
|
466
|
+
|
|
467
|
+
### Updates
|
|
468
|
+
|
|
469
|
+
- Update typescript to v.5.0.4 and related packages to latest version
|
|
470
|
+
- Update globals.ts
|
|
471
|
+
|
|
472
|
+
## 0.0.42 (2023-04-06)
|
|
473
|
+
|
|
474
|
+
### Fixed
|
|
475
|
+
|
|
476
|
+
- Fixed updateDateQuickFilterProxyValue
|
|
477
|
+
|
|
478
|
+
## 0.0.41 (2023-04-06)
|
|
479
|
+
|
|
480
|
+
## Fixed
|
|
481
|
+
|
|
482
|
+
- Fixed toSqlDate
|
|
483
|
+
- Fixed updateDateQuickFilterProxyValue
|
|
484
|
+
|
|
485
|
+
## 0.0.40 (2023-04-06)
|
|
486
|
+
|
|
487
|
+
### Changes
|
|
488
|
+
|
|
489
|
+
- Rename ToolDropdownButton to DropdownToolButton
|
|
490
|
+
- Add ToggleToolButton
|
|
491
|
+
|
|
492
|
+
## 0.0.39 (2023-04-02)
|
|
493
|
+
|
|
494
|
+
### Added
|
|
495
|
+
|
|
496
|
+
- Add DateMonthFormatter
|
|
497
|
+
|
|
498
|
+
## 0.0.38 (2023-04-02)
|
|
499
|
+
|
|
500
|
+
### Fixed
|
|
501
|
+
|
|
502
|
+
- Fixed return value from DateMonthEditor
|
|
503
|
+
|
|
504
|
+
## 0.0.37 (2023-04-02)
|
|
505
|
+
|
|
506
|
+
### Updates
|
|
507
|
+
|
|
508
|
+
- Update return value from DateMonthEditor
|
|
509
|
+
|
|
510
|
+
## 0.0.36 (2023-04-02)
|
|
511
|
+
|
|
512
|
+
### Fixed
|
|
513
|
+
|
|
514
|
+
- Fixed error DateMonthEditor
|
|
515
|
+
|
|
516
|
+
## 0.0.35 (2023-04-02)
|
|
517
|
+
|
|
518
|
+
### Fixed
|
|
519
|
+
|
|
520
|
+
- Forget export DateMonthEditor
|
|
521
|
+
|
|
522
|
+
## 0.0.34 (2023-04-02)
|
|
523
|
+
|
|
524
|
+
### Added
|
|
525
|
+
|
|
526
|
+
- Add DateMonthEditor
|
|
527
|
+
|
|
528
|
+
## 0.0.33 (2023-03-30)
|
|
529
|
+
|
|
530
|
+
### Added
|
|
531
|
+
|
|
532
|
+
- Add toSqlDate, toTimeString, toNumber
|
|
533
|
+
|
|
534
|
+
## 0.0.32 (2023-03-24)
|
|
535
|
+
|
|
536
|
+
### Updates
|
|
537
|
+
|
|
538
|
+
- Rename onExportExcel to doExportExcel
|
|
539
|
+
- Change IdevsExportRequest property viewName to nullable string type
|
|
540
|
+
|
|
541
|
+
## 0.0.31 (2023-03-24)
|
|
542
|
+
|
|
543
|
+
### Added
|
|
544
|
+
|
|
545
|
+
- add function toSqlDateString to convert date to string in sql format yyyy-MM-dd
|
|
546
|
+
|
|
547
|
+
## 0.0.30 (2023-03-23)
|
|
548
|
+
|
|
549
|
+
### Added
|
|
550
|
+
|
|
551
|
+
- Added more css
|
|
552
|
+
|
|
553
|
+
## 0.0.29 (2023-03-23)
|
|
554
|
+
|
|
555
|
+
### Changes
|
|
556
|
+
|
|
557
|
+
- Rename new properties add from v0.0.28
|
|
558
|
+
|
|
559
|
+
## 0.0.28 (2023-03-23)
|
|
560
|
+
|
|
561
|
+
### Changes
|
|
562
|
+
|
|
563
|
+
- Add more property to IdevsExportRequest
|
|
564
|
+
|
|
565
|
+
## 0.0.27 (2023-03-22)
|
|
566
|
+
|
|
567
|
+
## Fixed
|
|
568
|
+
|
|
569
|
+
- Finally remove onViewSubmit and check within onClick event
|
|
570
|
+
|
|
571
|
+
## 0.0.26 (2023-03-22)
|
|
572
|
+
|
|
573
|
+
## Fixed
|
|
574
|
+
|
|
575
|
+
- Forgot to build
|
|
576
|
+
|
|
577
|
+
## 0.0.25 (2023-03-22)
|
|
578
|
+
|
|
579
|
+
### Fixed
|
|
580
|
+
|
|
581
|
+
- Fixed onViewSubmit
|
|
582
|
+
|
|
583
|
+
## 0.0.24 (2023-03-22)
|
|
584
|
+
|
|
585
|
+
### Changes
|
|
586
|
+
|
|
587
|
+
- bring back onViewSubmit
|
|
588
|
+
|
|
589
|
+
## 0.0.23 (2023-03-22)
|
|
590
|
+
|
|
591
|
+
### Fixed
|
|
592
|
+
|
|
593
|
+
- remove onViewSubmit from excelExportHelper and pdfExportHelper
|
|
594
|
+
|
|
595
|
+
## 0.0.22 (2023-03-22)
|
|
596
|
+
|
|
597
|
+
### Fixed
|
|
598
|
+
|
|
599
|
+
- onViewSubmit on excelExportHelper and pdfExportHelper
|
|
600
|
+
|
|
601
|
+
## 0.0.21 (2023-03-22)
|
|
602
|
+
|
|
603
|
+
### Fixed
|
|
604
|
+
|
|
605
|
+
- onViewSubmit on excelExportHelper and pdfExportHelper
|
|
606
|
+
|
|
607
|
+
## 0.0.20 (2023-03-22)
|
|
608
|
+
|
|
609
|
+
### Fixed
|
|
610
|
+
|
|
611
|
+
- createExportToolButton onClick
|
|
612
|
+
|
|
613
|
+
## 0.0.19 (2023-03-22)
|
|
614
|
+
|
|
615
|
+
### Fixed
|
|
616
|
+
|
|
617
|
+
- createExportToolButton
|
|
618
|
+
|
|
619
|
+
## 0.0.18 (2023-03-22)
|
|
620
|
+
|
|
621
|
+
### Updated
|
|
622
|
+
|
|
623
|
+
- Update pdfExporHelper, excelExportHelper, IDevsExportRequest
|
|
624
|
+
- Merge createPdfToolButton and createExcelToolButton with new name createExportToolButton
|
|
625
|
+
|
|
626
|
+
## 0.0.17 (2023-03-21)
|
|
627
|
+
|
|
628
|
+
### Fixed
|
|
629
|
+
|
|
630
|
+
- ExcelExportHelper.createToolButton => createExcelToolButton
|
|
631
|
+
- PdfExportHelper.createToolButton => createPdfToolButton
|
|
632
|
+
|
|
633
|
+
## 0.0.16 (2023-03-20)
|
|
634
|
+
|
|
635
|
+
### Fixed
|
|
636
|
+
|
|
637
|
+
- updateDateQuickFilterProxyValue
|
|
638
|
+
|
|
639
|
+
## 0.0.15 (2023-03-20)
|
|
640
|
+
|
|
641
|
+
## Added
|
|
642
|
+
|
|
643
|
+
- addDateQuickFilterProxy
|
|
644
|
+
- updateDateQuickFilterProxyValue
|
|
645
|
+
|
|
646
|
+
## 0.0.14 (2023-03-18)
|
|
647
|
+
|
|
648
|
+
### Fixed
|
|
649
|
+
|
|
650
|
+
- Fixed mistake for GridHelper
|
|
651
|
+
|
|
652
|
+
## 0.0.13 (2023-03-18)
|
|
653
|
+
|
|
654
|
+
### Added
|
|
655
|
+
|
|
656
|
+
- Add idevsEditors.load and idevsFormatters.load to force load scripts
|
|
657
|
+
|
|
658
|
+
## 0.0.12 (2023-03-14)
|
|
659
|
+
|
|
660
|
+
### Fixed
|
|
661
|
+
|
|
662
|
+
- Fixed LookupFormatter
|
|
663
|
+
|
|
664
|
+
## 0.0.11 (2023-03-13)
|
|
665
|
+
|
|
666
|
+
### Added
|
|
667
|
+
|
|
668
|
+
- LookupFormatter to display lookup values
|
|
669
|
+
|
|
670
|
+
## 0.0.10 (2023-03-10)
|
|
671
|
+
|
|
672
|
+
### Fixed
|
|
673
|
+
|
|
674
|
+
- Forgot to export CheckboxButtonEditor
|
|
675
|
+
|
|
676
|
+
## 0.0.9 (2023-03-10)
|
|
677
|
+
|
|
678
|
+
### Changes
|
|
679
|
+
|
|
680
|
+
- Include css into CheckboxButtonEditor directly instead of using external css file
|
|
681
|
+
|
|
682
|
+
## 0.0.8 (2023-03-09)
|
|
683
|
+
|
|
684
|
+
### Added
|
|
685
|
+
|
|
686
|
+
- CheckboxButtonEditor
|
|
687
|
+
|
|
688
|
+
## 0.0.7 (2023-03-04)
|
|
689
|
+
|
|
690
|
+
### Changes
|
|
691
|
+
|
|
692
|
+
Remove idevs.font.css
|
|
693
|
+
|
|
694
|
+
## 0.0.6 (2023-03-03)
|
|
695
|
+
|
|
696
|
+
### Changes
|
|
697
|
+
|
|
698
|
+
All new changes
|
|
699
|
+
|
|
700
|
+
## 0.0.5 (2023-02-28)
|
|
701
|
+
|
|
702
|
+
### Changes
|
|
703
|
+
|
|
704
|
+
- TypeScripts
|
|
705
|
+
- Rename arguments all formatter
|
|
706
|
+
|
|
707
|
+
## 0.0.4 (2023-02-28)
|
|
708
|
+
|
|
709
|
+
### Added
|
|
710
|
+
|
|
711
|
+
- TypeScripts
|
|
712
|
+
- ZeroDisplayFormatter
|
|
713
|
+
|
|
714
|
+
### Removed
|
|
715
|
+
|
|
716
|
+
- TypeScripts
|
|
717
|
+
- ZeroToBlankFormatter
|
|
718
|
+
|
|
719
|
+
## 0.0.2 (2023-02-26)
|
|
720
|
+
|
|
721
|
+
Update package with usable version.
|
|
722
|
+
|
|
723
|
+
### Added
|
|
724
|
+
|
|
725
|
+
- TypeScripts
|
|
726
|
+
- ToolDropdownButton
|
|
727
|
+
- CheckboxFormatter
|
|
728
|
+
- ZeroToBlankFormatter
|
|
729
|
+
|
|
730
|
+
- Stylesheets
|
|
731
|
+
- idevs.dropdown.css
|
|
732
|
+
- idevs.font.css
|
|
733
|
+
- idevs.print.css
|
|
734
|
+
|
|
735
|
+
## 0.0.1 (2023-02-25)
|
|
736
|
+
|
|
737
|
+
Test publish on npm libraries.
|