cmat 0.0.5 → 0.0.7
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/breadcrumb/public-api.d.ts +2 -0
- package/components/card/public-api.d.ts +1 -0
- package/components/cascade/public-api.d.ts +1 -0
- package/components/chip-input/chip-input.component.d.ts +3 -1
- package/components/material-datetimepicker/public-api.d.ts +1 -0
- package/components/pagination/public-api.d.ts +1 -0
- package/components/popover/popover-trigger.d.ts +121 -0
- package/components/popover/popover.target.d.ts +8 -0
- package/components/popover/public-api.d.ts +3 -0
- package/components/select-tree/public-api.d.ts +2 -0
- package/components/toast/public-api.d.ts +4 -0
- package/esm2022/components/breadcrumb/public-api.mjs +3 -1
- package/esm2022/components/card/public-api.mjs +2 -1
- package/esm2022/components/cascade/public-api.mjs +2 -1
- package/esm2022/components/chip-input/chip-input.component.mjs +11 -5
- package/esm2022/components/material-datetimepicker/public-api.mjs +2 -1
- package/esm2022/components/pagination/public-api.mjs +2 -1
- package/esm2022/components/popover/popover-trigger.mjs +444 -0
- package/esm2022/components/popover/popover.target.mjs +18 -0
- package/esm2022/components/popover/public-api.mjs +4 -1
- package/esm2022/components/select-tree/public-api.mjs +3 -1
- package/esm2022/components/toast/public-api.mjs +5 -1
- package/fesm2022/cmat-components-chip-input.mjs +10 -4
- package/fesm2022/cmat-components-chip-input.mjs.map +1 -1
- package/fesm2022/cmat-components-popover.mjs +458 -3
- package/fesm2022/cmat-components-popover.mjs.map +1 -1
- package/fesm2022/cmat-components-select-tree.mjs +4 -1
- package/fesm2022/cmat-components-select-tree.mjs.map +1 -1
- package/fesm2022/cmat-components-toast.mjs +1 -1
- package/package.json +67 -67
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cmat",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Yu Tao",
|
|
6
6
|
"email": "916426364@qq.com"
|
|
@@ -56,6 +56,36 @@
|
|
|
56
56
|
"esm": "./esm2022/version/cmat-version.mjs",
|
|
57
57
|
"default": "./fesm2022/cmat-version.mjs"
|
|
58
58
|
},
|
|
59
|
+
"./directives/animate-on-scroll": {
|
|
60
|
+
"types": "./directives/animate-on-scroll/index.d.ts",
|
|
61
|
+
"esm2022": "./esm2022/directives/animate-on-scroll/cmat-directives-animate-on-scroll.mjs",
|
|
62
|
+
"esm": "./esm2022/directives/animate-on-scroll/cmat-directives-animate-on-scroll.mjs",
|
|
63
|
+
"default": "./fesm2022/cmat-directives-animate-on-scroll.mjs"
|
|
64
|
+
},
|
|
65
|
+
"./directives/autofocus": {
|
|
66
|
+
"types": "./directives/autofocus/index.d.ts",
|
|
67
|
+
"esm2022": "./esm2022/directives/autofocus/cmat-directives-autofocus.mjs",
|
|
68
|
+
"esm": "./esm2022/directives/autofocus/cmat-directives-autofocus.mjs",
|
|
69
|
+
"default": "./fesm2022/cmat-directives-autofocus.mjs"
|
|
70
|
+
},
|
|
71
|
+
"./directives/debounce": {
|
|
72
|
+
"types": "./directives/debounce/index.d.ts",
|
|
73
|
+
"esm2022": "./esm2022/directives/debounce/cmat-directives-debounce.mjs",
|
|
74
|
+
"esm": "./esm2022/directives/debounce/cmat-directives-debounce.mjs",
|
|
75
|
+
"default": "./fesm2022/cmat-directives-debounce.mjs"
|
|
76
|
+
},
|
|
77
|
+
"./directives/digit-only": {
|
|
78
|
+
"types": "./directives/digit-only/index.d.ts",
|
|
79
|
+
"esm2022": "./esm2022/directives/digit-only/cmat-directives-digit-only.mjs",
|
|
80
|
+
"esm": "./esm2022/directives/digit-only/cmat-directives-digit-only.mjs",
|
|
81
|
+
"default": "./fesm2022/cmat-directives-digit-only.mjs"
|
|
82
|
+
},
|
|
83
|
+
"./directives/equal-validator": {
|
|
84
|
+
"types": "./directives/equal-validator/index.d.ts",
|
|
85
|
+
"esm2022": "./esm2022/directives/equal-validator/cmat-directives-equal-validator.mjs",
|
|
86
|
+
"esm": "./esm2022/directives/equal-validator/cmat-directives-equal-validator.mjs",
|
|
87
|
+
"default": "./fesm2022/cmat-directives-equal-validator.mjs"
|
|
88
|
+
},
|
|
59
89
|
"./components/adapter": {
|
|
60
90
|
"types": "./components/adapter/index.d.ts",
|
|
61
91
|
"esm2022": "./esm2022/components/adapter/cmat-components-adapter.mjs",
|
|
@@ -74,18 +104,18 @@
|
|
|
74
104
|
"esm": "./esm2022/components/card/cmat-components-card.mjs",
|
|
75
105
|
"default": "./fesm2022/cmat-components-card.mjs"
|
|
76
106
|
},
|
|
77
|
-
"./components/chip-input": {
|
|
78
|
-
"types": "./components/chip-input/index.d.ts",
|
|
79
|
-
"esm2022": "./esm2022/components/chip-input/cmat-components-chip-input.mjs",
|
|
80
|
-
"esm": "./esm2022/components/chip-input/cmat-components-chip-input.mjs",
|
|
81
|
-
"default": "./fesm2022/cmat-components-chip-input.mjs"
|
|
82
|
-
},
|
|
83
107
|
"./components/cascade": {
|
|
84
108
|
"types": "./components/cascade/index.d.ts",
|
|
85
109
|
"esm2022": "./esm2022/components/cascade/cmat-components-cascade.mjs",
|
|
86
110
|
"esm": "./esm2022/components/cascade/cmat-components-cascade.mjs",
|
|
87
111
|
"default": "./fesm2022/cmat-components-cascade.mjs"
|
|
88
112
|
},
|
|
113
|
+
"./components/chip-input": {
|
|
114
|
+
"types": "./components/chip-input/index.d.ts",
|
|
115
|
+
"esm2022": "./esm2022/components/chip-input/cmat-components-chip-input.mjs",
|
|
116
|
+
"esm": "./esm2022/components/chip-input/cmat-components-chip-input.mjs",
|
|
117
|
+
"default": "./fesm2022/cmat-components-chip-input.mjs"
|
|
118
|
+
},
|
|
89
119
|
"./components/date-range": {
|
|
90
120
|
"types": "./components/date-range/index.d.ts",
|
|
91
121
|
"esm2022": "./esm2022/components/date-range/cmat-components-date-range.mjs",
|
|
@@ -128,18 +158,18 @@
|
|
|
128
158
|
"esm": "./esm2022/components/material-color-picker/cmat-components-material-color-picker.mjs",
|
|
129
159
|
"default": "./fesm2022/cmat-components-material-color-picker.mjs"
|
|
130
160
|
},
|
|
131
|
-
"./components/material-datetimepicker": {
|
|
132
|
-
"types": "./components/material-datetimepicker/index.d.ts",
|
|
133
|
-
"esm2022": "./esm2022/components/material-datetimepicker/cmat-components-material-datetimepicker.mjs",
|
|
134
|
-
"esm": "./esm2022/components/material-datetimepicker/cmat-components-material-datetimepicker.mjs",
|
|
135
|
-
"default": "./fesm2022/cmat-components-material-datetimepicker.mjs"
|
|
136
|
-
},
|
|
137
161
|
"./components/navigation": {
|
|
138
162
|
"types": "./components/navigation/index.d.ts",
|
|
139
163
|
"esm2022": "./esm2022/components/navigation/cmat-components-navigation.mjs",
|
|
140
164
|
"esm": "./esm2022/components/navigation/cmat-components-navigation.mjs",
|
|
141
165
|
"default": "./fesm2022/cmat-components-navigation.mjs"
|
|
142
166
|
},
|
|
167
|
+
"./components/material-datetimepicker": {
|
|
168
|
+
"types": "./components/material-datetimepicker/index.d.ts",
|
|
169
|
+
"esm2022": "./esm2022/components/material-datetimepicker/cmat-components-material-datetimepicker.mjs",
|
|
170
|
+
"esm": "./esm2022/components/material-datetimepicker/cmat-components-material-datetimepicker.mjs",
|
|
171
|
+
"default": "./fesm2022/cmat-components-material-datetimepicker.mjs"
|
|
172
|
+
},
|
|
143
173
|
"./components/pagination": {
|
|
144
174
|
"types": "./components/pagination/index.d.ts",
|
|
145
175
|
"esm2022": "./esm2022/components/pagination/cmat-components-pagination.mjs",
|
|
@@ -158,18 +188,18 @@
|
|
|
158
188
|
"esm": "./esm2022/components/popover/cmat-components-popover.mjs",
|
|
159
189
|
"default": "./fesm2022/cmat-components-popover.mjs"
|
|
160
190
|
},
|
|
161
|
-
"./components/progress-bar": {
|
|
162
|
-
"types": "./components/progress-bar/index.d.ts",
|
|
163
|
-
"esm2022": "./esm2022/components/progress-bar/cmat-components-progress-bar.mjs",
|
|
164
|
-
"esm": "./esm2022/components/progress-bar/cmat-components-progress-bar.mjs",
|
|
165
|
-
"default": "./fesm2022/cmat-components-progress-bar.mjs"
|
|
166
|
-
},
|
|
167
191
|
"./components/rating": {
|
|
168
192
|
"types": "./components/rating/index.d.ts",
|
|
169
193
|
"esm2022": "./esm2022/components/rating/cmat-components-rating.mjs",
|
|
170
194
|
"esm": "./esm2022/components/rating/cmat-components-rating.mjs",
|
|
171
195
|
"default": "./fesm2022/cmat-components-rating.mjs"
|
|
172
196
|
},
|
|
197
|
+
"./components/progress-bar": {
|
|
198
|
+
"types": "./components/progress-bar/index.d.ts",
|
|
199
|
+
"esm2022": "./esm2022/components/progress-bar/cmat-components-progress-bar.mjs",
|
|
200
|
+
"esm": "./esm2022/components/progress-bar/cmat-components-progress-bar.mjs",
|
|
201
|
+
"default": "./fesm2022/cmat-components-progress-bar.mjs"
|
|
202
|
+
},
|
|
173
203
|
"./components/select-search": {
|
|
174
204
|
"types": "./components/select-search/index.d.ts",
|
|
175
205
|
"esm2022": "./esm2022/components/select-search/cmat-components-select-search.mjs",
|
|
@@ -200,36 +230,6 @@
|
|
|
200
230
|
"esm": "./esm2022/components/transfer-picker/cmat-components-transfer-picker.mjs",
|
|
201
231
|
"default": "./fesm2022/cmat-components-transfer-picker.mjs"
|
|
202
232
|
},
|
|
203
|
-
"./directives/animate-on-scroll": {
|
|
204
|
-
"types": "./directives/animate-on-scroll/index.d.ts",
|
|
205
|
-
"esm2022": "./esm2022/directives/animate-on-scroll/cmat-directives-animate-on-scroll.mjs",
|
|
206
|
-
"esm": "./esm2022/directives/animate-on-scroll/cmat-directives-animate-on-scroll.mjs",
|
|
207
|
-
"default": "./fesm2022/cmat-directives-animate-on-scroll.mjs"
|
|
208
|
-
},
|
|
209
|
-
"./directives/autofocus": {
|
|
210
|
-
"types": "./directives/autofocus/index.d.ts",
|
|
211
|
-
"esm2022": "./esm2022/directives/autofocus/cmat-directives-autofocus.mjs",
|
|
212
|
-
"esm": "./esm2022/directives/autofocus/cmat-directives-autofocus.mjs",
|
|
213
|
-
"default": "./fesm2022/cmat-directives-autofocus.mjs"
|
|
214
|
-
},
|
|
215
|
-
"./directives/debounce": {
|
|
216
|
-
"types": "./directives/debounce/index.d.ts",
|
|
217
|
-
"esm2022": "./esm2022/directives/debounce/cmat-directives-debounce.mjs",
|
|
218
|
-
"esm": "./esm2022/directives/debounce/cmat-directives-debounce.mjs",
|
|
219
|
-
"default": "./fesm2022/cmat-directives-debounce.mjs"
|
|
220
|
-
},
|
|
221
|
-
"./directives/digit-only": {
|
|
222
|
-
"types": "./directives/digit-only/index.d.ts",
|
|
223
|
-
"esm2022": "./esm2022/directives/digit-only/cmat-directives-digit-only.mjs",
|
|
224
|
-
"esm": "./esm2022/directives/digit-only/cmat-directives-digit-only.mjs",
|
|
225
|
-
"default": "./fesm2022/cmat-directives-digit-only.mjs"
|
|
226
|
-
},
|
|
227
|
-
"./directives/equal-validator": {
|
|
228
|
-
"types": "./directives/equal-validator/index.d.ts",
|
|
229
|
-
"esm2022": "./esm2022/directives/equal-validator/cmat-directives-equal-validator.mjs",
|
|
230
|
-
"esm": "./esm2022/directives/equal-validator/cmat-directives-equal-validator.mjs",
|
|
231
|
-
"default": "./fesm2022/cmat-directives-equal-validator.mjs"
|
|
232
|
-
},
|
|
233
233
|
"./lib/mock-api": {
|
|
234
234
|
"types": "./lib/mock-api/index.d.ts",
|
|
235
235
|
"esm2022": "./esm2022/lib/mock-api/cmat-lib-mock-api.mjs",
|
|
@@ -248,18 +248,18 @@
|
|
|
248
248
|
"esm": "./esm2022/pipes/date-format/cmat-pipes-date-format.mjs",
|
|
249
249
|
"default": "./fesm2022/cmat-pipes-date-format.mjs"
|
|
250
250
|
},
|
|
251
|
-
"./pipes/group-by": {
|
|
252
|
-
"types": "./pipes/group-by/index.d.ts",
|
|
253
|
-
"esm2022": "./esm2022/pipes/group-by/cmat-pipes-group-by.mjs",
|
|
254
|
-
"esm": "./esm2022/pipes/group-by/cmat-pipes-group-by.mjs",
|
|
255
|
-
"default": "./fesm2022/cmat-pipes-group-by.mjs"
|
|
256
|
-
},
|
|
257
251
|
"./pipes/find-by-key": {
|
|
258
252
|
"types": "./pipes/find-by-key/index.d.ts",
|
|
259
253
|
"esm2022": "./esm2022/pipes/find-by-key/cmat-pipes-find-by-key.mjs",
|
|
260
254
|
"esm": "./esm2022/pipes/find-by-key/cmat-pipes-find-by-key.mjs",
|
|
261
255
|
"default": "./fesm2022/cmat-pipes-find-by-key.mjs"
|
|
262
256
|
},
|
|
257
|
+
"./pipes/group-by": {
|
|
258
|
+
"types": "./pipes/group-by/index.d.ts",
|
|
259
|
+
"esm2022": "./esm2022/pipes/group-by/cmat-pipes-group-by.mjs",
|
|
260
|
+
"esm": "./esm2022/pipes/group-by/cmat-pipes-group-by.mjs",
|
|
261
|
+
"default": "./fesm2022/cmat-pipes-group-by.mjs"
|
|
262
|
+
},
|
|
263
263
|
"./pipes/keys": {
|
|
264
264
|
"types": "./pipes/keys/index.d.ts",
|
|
265
265
|
"esm2022": "./esm2022/pipes/keys/cmat-pipes-keys.mjs",
|
|
@@ -290,18 +290,18 @@
|
|
|
290
290
|
"esm": "./esm2022/services/config/cmat-services-config.mjs",
|
|
291
291
|
"default": "./fesm2022/cmat-services-config.mjs"
|
|
292
292
|
},
|
|
293
|
-
"./services/data": {
|
|
294
|
-
"types": "./services/data/index.d.ts",
|
|
295
|
-
"esm2022": "./esm2022/services/data/cmat-services-data.mjs",
|
|
296
|
-
"esm": "./esm2022/services/data/cmat-services-data.mjs",
|
|
297
|
-
"default": "./fesm2022/cmat-services-data.mjs"
|
|
298
|
-
},
|
|
299
293
|
"./services/confirmation": {
|
|
300
294
|
"types": "./services/confirmation/index.d.ts",
|
|
301
295
|
"esm2022": "./esm2022/services/confirmation/cmat-services-confirmation.mjs",
|
|
302
296
|
"esm": "./esm2022/services/confirmation/cmat-services-confirmation.mjs",
|
|
303
297
|
"default": "./fesm2022/cmat-services-confirmation.mjs"
|
|
304
298
|
},
|
|
299
|
+
"./services/data": {
|
|
300
|
+
"types": "./services/data/index.d.ts",
|
|
301
|
+
"esm2022": "./esm2022/services/data/cmat-services-data.mjs",
|
|
302
|
+
"esm": "./esm2022/services/data/cmat-services-data.mjs",
|
|
303
|
+
"default": "./fesm2022/cmat-services-data.mjs"
|
|
304
|
+
},
|
|
305
305
|
"./services/loading": {
|
|
306
306
|
"types": "./services/loading/index.d.ts",
|
|
307
307
|
"esm2022": "./esm2022/services/loading/cmat-services-loading.mjs",
|
|
@@ -320,18 +320,18 @@
|
|
|
320
320
|
"esm": "./esm2022/services/media-watcher/cmat-services-media-watcher.mjs",
|
|
321
321
|
"default": "./fesm2022/cmat-services-media-watcher.mjs"
|
|
322
322
|
},
|
|
323
|
-
"./services/splash-screen": {
|
|
324
|
-
"types": "./services/splash-screen/index.d.ts",
|
|
325
|
-
"esm2022": "./esm2022/services/splash-screen/cmat-services-splash-screen.mjs",
|
|
326
|
-
"esm": "./esm2022/services/splash-screen/cmat-services-splash-screen.mjs",
|
|
327
|
-
"default": "./fesm2022/cmat-services-splash-screen.mjs"
|
|
328
|
-
},
|
|
329
323
|
"./services/platform": {
|
|
330
324
|
"types": "./services/platform/index.d.ts",
|
|
331
325
|
"esm2022": "./esm2022/services/platform/cmat-services-platform.mjs",
|
|
332
326
|
"esm": "./esm2022/services/platform/cmat-services-platform.mjs",
|
|
333
327
|
"default": "./fesm2022/cmat-services-platform.mjs"
|
|
334
328
|
},
|
|
329
|
+
"./services/splash-screen": {
|
|
330
|
+
"types": "./services/splash-screen/index.d.ts",
|
|
331
|
+
"esm2022": "./esm2022/services/splash-screen/cmat-services-splash-screen.mjs",
|
|
332
|
+
"esm": "./esm2022/services/splash-screen/cmat-services-splash-screen.mjs",
|
|
333
|
+
"default": "./fesm2022/cmat-services-splash-screen.mjs"
|
|
334
|
+
},
|
|
335
335
|
"./services/title": {
|
|
336
336
|
"types": "./services/title/index.d.ts",
|
|
337
337
|
"esm2022": "./esm2022/services/title/cmat-services-title.mjs",
|