@acorex/components 20.7.33 → 20.7.35
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/calendar/index.d.ts +74 -20
- package/data-table/index.d.ts +22 -3
- package/datetime-box/index.d.ts +6 -2
- package/datetime-picker/index.d.ts +6 -2
- package/fesm2022/acorex-components-calendar.mjs +111 -8
- package/fesm2022/acorex-components-calendar.mjs.map +1 -1
- package/fesm2022/acorex-components-data-table.mjs +32 -9
- package/fesm2022/acorex-components-data-table.mjs.map +1 -1
- package/fesm2022/acorex-components-datetime-box.mjs +7 -3
- package/fesm2022/acorex-components-datetime-box.mjs.map +1 -1
- package/fesm2022/acorex-components-datetime-picker.mjs +7 -3
- package/fesm2022/acorex-components-datetime-picker.mjs.map +1 -1
- package/fesm2022/acorex-components-query-builder.mjs +1 -1
- package/fesm2022/acorex-components-query-builder.mjs.map +1 -1
- package/fesm2022/acorex-components-rrule.mjs +1 -1
- package/fesm2022/acorex-components-rrule.mjs.map +1 -1
- package/fesm2022/acorex-components-scheduler-picker.mjs +5 -5
- package/fesm2022/acorex-components-scheduler-picker.mjs.map +1 -1
- package/fesm2022/acorex-components-scheduler.mjs +1 -1
- package/fesm2022/acorex-components-scheduler.mjs.map +1 -1
- package/fesm2022/acorex-components-select-box.mjs +2 -2
- package/fesm2022/acorex-components-select-box.mjs.map +1 -1
- package/package.json +21 -21
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/components",
|
|
3
|
-
"version": "20.7.
|
|
3
|
+
"version": "20.7.35",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/core": "20.7.
|
|
6
|
-
"@acorex/cdk": "20.7.
|
|
5
|
+
"@acorex/core": "20.7.35",
|
|
6
|
+
"@acorex/cdk": "20.7.35",
|
|
7
7
|
"polytype": ">=0.17.0",
|
|
8
8
|
"angular-imask": ">=7.6.1",
|
|
9
9
|
"gridstack": ">=12.0.0",
|
|
@@ -60,6 +60,10 @@
|
|
|
60
60
|
"types": "./accordion/index.d.ts",
|
|
61
61
|
"default": "./fesm2022/acorex-components-accordion.mjs"
|
|
62
62
|
},
|
|
63
|
+
"./action-sheet": {
|
|
64
|
+
"types": "./action-sheet/index.d.ts",
|
|
65
|
+
"default": "./fesm2022/acorex-components-action-sheet.mjs"
|
|
66
|
+
},
|
|
63
67
|
"./alert": {
|
|
64
68
|
"types": "./alert/index.d.ts",
|
|
65
69
|
"default": "./fesm2022/acorex-components-alert.mjs"
|
|
@@ -68,10 +72,6 @@
|
|
|
68
72
|
"types": "./aspect-ratio/index.d.ts",
|
|
69
73
|
"default": "./fesm2022/acorex-components-aspect-ratio.mjs"
|
|
70
74
|
},
|
|
71
|
-
"./action-sheet": {
|
|
72
|
-
"types": "./action-sheet/index.d.ts",
|
|
73
|
-
"default": "./fesm2022/acorex-components-action-sheet.mjs"
|
|
74
|
-
},
|
|
75
75
|
"./audio-wave": {
|
|
76
76
|
"types": "./audio-wave/index.d.ts",
|
|
77
77
|
"default": "./fesm2022/acorex-components-audio-wave.mjs"
|
|
@@ -116,10 +116,6 @@
|
|
|
116
116
|
"types": "./chips/index.d.ts",
|
|
117
117
|
"default": "./fesm2022/acorex-components-chips.mjs"
|
|
118
118
|
},
|
|
119
|
-
"./circular-progress": {
|
|
120
|
-
"types": "./circular-progress/index.d.ts",
|
|
121
|
-
"default": "./fesm2022/acorex-components-circular-progress.mjs"
|
|
122
|
-
},
|
|
123
119
|
"./code-editor": {
|
|
124
120
|
"types": "./code-editor/index.d.ts",
|
|
125
121
|
"default": "./fesm2022/acorex-components-code-editor.mjs"
|
|
@@ -128,21 +124,25 @@
|
|
|
128
124
|
"types": "./collapse/index.d.ts",
|
|
129
125
|
"default": "./fesm2022/acorex-components-collapse.mjs"
|
|
130
126
|
},
|
|
131
|
-
"./
|
|
132
|
-
"types": "./
|
|
133
|
-
"default": "./fesm2022/acorex-components-
|
|
127
|
+
"./circular-progress": {
|
|
128
|
+
"types": "./circular-progress/index.d.ts",
|
|
129
|
+
"default": "./fesm2022/acorex-components-circular-progress.mjs"
|
|
134
130
|
},
|
|
135
131
|
"./color-palette": {
|
|
136
132
|
"types": "./color-palette/index.d.ts",
|
|
137
133
|
"default": "./fesm2022/acorex-components-color-palette.mjs"
|
|
138
134
|
},
|
|
135
|
+
"./command": {
|
|
136
|
+
"types": "./command/index.d.ts",
|
|
137
|
+
"default": "./fesm2022/acorex-components-command.mjs"
|
|
138
|
+
},
|
|
139
139
|
"./comment": {
|
|
140
140
|
"types": "./comment/index.d.ts",
|
|
141
141
|
"default": "./fesm2022/acorex-components-comment.mjs"
|
|
142
142
|
},
|
|
143
|
-
"./
|
|
144
|
-
"types": "./
|
|
145
|
-
"default": "./fesm2022/acorex-components-
|
|
143
|
+
"./color-box": {
|
|
144
|
+
"types": "./color-box/index.d.ts",
|
|
145
|
+
"default": "./fesm2022/acorex-components-color-box.mjs"
|
|
146
146
|
},
|
|
147
147
|
"./conversation": {
|
|
148
148
|
"types": "./conversation/index.d.ts",
|
|
@@ -208,14 +208,14 @@
|
|
|
208
208
|
"types": "./editor/index.d.ts",
|
|
209
209
|
"default": "./fesm2022/acorex-components-editor.mjs"
|
|
210
210
|
},
|
|
211
|
-
"./file-explorer": {
|
|
212
|
-
"types": "./file-explorer/index.d.ts",
|
|
213
|
-
"default": "./fesm2022/acorex-components-file-explorer.mjs"
|
|
214
|
-
},
|
|
215
211
|
"./fab": {
|
|
216
212
|
"types": "./fab/index.d.ts",
|
|
217
213
|
"default": "./fesm2022/acorex-components-fab.mjs"
|
|
218
214
|
},
|
|
215
|
+
"./file-explorer": {
|
|
216
|
+
"types": "./file-explorer/index.d.ts",
|
|
217
|
+
"default": "./fesm2022/acorex-components-file-explorer.mjs"
|
|
218
|
+
},
|
|
219
219
|
"./flow-chart": {
|
|
220
220
|
"types": "./flow-chart/index.d.ts",
|
|
221
221
|
"default": "./fesm2022/acorex-components-flow-chart.mjs"
|