@acorex/components 20.2.32 → 20.2.34
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/fesm2022/acorex-components-dialog.mjs +11 -2
- package/fesm2022/acorex-components-dialog.mjs.map +1 -1
- package/fesm2022/acorex-components-image-editor.mjs +134 -94
- package/fesm2022/acorex-components-image-editor.mjs.map +1 -1
- package/fesm2022/acorex-components-loading-dialog.mjs +11 -2
- package/fesm2022/acorex-components-loading-dialog.mjs.map +1 -1
- package/fesm2022/acorex-components-rrule.mjs +2 -2
- package/fesm2022/acorex-components-rrule.mjs.map +1 -1
- package/fesm2022/acorex-components-scheduler-picker.mjs +2339 -0
- package/fesm2022/acorex-components-scheduler-picker.mjs.map +1 -0
- package/fesm2022/acorex-components-tabs.mjs +6 -2
- package/fesm2022/acorex-components-tabs.mjs.map +1 -1
- package/image-editor/index.d.ts +8 -5
- package/package.json +11 -7
- package/scheduler-picker/README.md +15 -0
- package/scheduler-picker/index.d.ts +1360 -0
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "20.2.
|
|
3
|
+
"version": "20.2.34",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/core": "20.2.
|
|
6
|
-
"@acorex/cdk": "20.2.
|
|
5
|
+
"@acorex/core": "20.2.34",
|
|
6
|
+
"@acorex/cdk": "20.2.34",
|
|
7
7
|
"@angular/common": "^20.0.0",
|
|
8
8
|
"@angular/core": "^20.0.0",
|
|
9
9
|
"@angular/cdk": "^20.0.0",
|
|
@@ -140,14 +140,14 @@
|
|
|
140
140
|
"types": "./color-box/index.d.ts",
|
|
141
141
|
"default": "./fesm2022/acorex-components-color-box.mjs"
|
|
142
142
|
},
|
|
143
|
-
"./color-palette": {
|
|
144
|
-
"types": "./color-palette/index.d.ts",
|
|
145
|
-
"default": "./fesm2022/acorex-components-color-palette.mjs"
|
|
146
|
-
},
|
|
147
143
|
"./command": {
|
|
148
144
|
"types": "./command/index.d.ts",
|
|
149
145
|
"default": "./fesm2022/acorex-components-command.mjs"
|
|
150
146
|
},
|
|
147
|
+
"./color-palette": {
|
|
148
|
+
"types": "./color-palette/index.d.ts",
|
|
149
|
+
"default": "./fesm2022/acorex-components-color-palette.mjs"
|
|
150
|
+
},
|
|
151
151
|
"./comment": {
|
|
152
152
|
"types": "./comment/index.d.ts",
|
|
153
153
|
"default": "./fesm2022/acorex-components-comment.mjs"
|
|
@@ -380,6 +380,10 @@
|
|
|
380
380
|
"types": "./scheduler/index.d.ts",
|
|
381
381
|
"default": "./fesm2022/acorex-components-scheduler.mjs"
|
|
382
382
|
},
|
|
383
|
+
"./scheduler-picker": {
|
|
384
|
+
"types": "./scheduler-picker/index.d.ts",
|
|
385
|
+
"default": "./fesm2022/acorex-components-scheduler-picker.mjs"
|
|
386
|
+
},
|
|
383
387
|
"./scss": {
|
|
384
388
|
"types": "./scss/index.d.ts",
|
|
385
389
|
"default": "./fesm2022/acorex-components-scss.mjs"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# @acorex/components/scheduler-picker
|
|
2
|
+
|
|
3
|
+
A powerful, fully customizable scheduler picker component for Angular applications. Create complex recurrence patterns with an intuitive UI supporting hourly, daily, weekly, monthly, and yearly schedules.
|
|
4
|
+
|
|
5
|
+
## ✨ Features
|
|
6
|
+
|
|
7
|
+
- 🗓️ **Multiple Recurrence Modes**: Hourly, daily, weekly, monthly, and yearly patterns
|
|
8
|
+
- ⏰ **Flexible Time Configuration**: Support for hours, minutes, and seconds precision
|
|
9
|
+
- 🔄 **Complex Patterns**: Specific days, occurrence-based scheduling (e.g., "first Monday")
|
|
10
|
+
- 📅 **Date Management**: Include/exclude specific dates from schedule
|
|
11
|
+
- 🌍 **Internationalization**: Full i18n support with customizable locale
|
|
12
|
+
- 🎨 **Highly Customizable**: Extensive configuration options
|
|
13
|
+
- ✅ **Built-in Validation**: Real-time pattern validation with helpful error messages
|
|
14
|
+
- 📊 **Export Formats**: Convert to cron, RRule (iCalendar), or get occurrence previews
|
|
15
|
+
- 🎯 **Type-Safe**: Full TypeScript support with strict typing
|