@acorex/components 21.0.0-next.10 → 21.0.0-next.11
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-map.mjs +1 -0
 - package/fesm2022/acorex-components-map.mjs.map +1 -1
 - package/fesm2022/acorex-components-rest-api-generator.mjs +2 -2
 - package/fesm2022/acorex-components-rest-api-generator.mjs.map +1 -1
 - package/fesm2022/acorex-components-rrule.mjs +128 -33
 - package/fesm2022/acorex-components-rrule.mjs.map +1 -1
 - package/fesm2022/acorex-components-selection-list-2.mjs +165 -0
 - package/fesm2022/acorex-components-selection-list-2.mjs.map +1 -0
 - package/fesm2022/acorex-components-selection-list.mjs +69 -14
 - package/fesm2022/acorex-components-selection-list.mjs.map +1 -1
 - package/package.json +10 -10
 - package/rrule/index.d.ts +99 -4
 - package/selection-list/README.md +2 -2
 - package/selection-list/index.d.ts +57 -16
 - package/selection-list-2/README.md +3 -0
 - package/selection-list-2/index.d.ts +52 -0
 - package/fesm2022/acorex-components-selection-list-legacy.mjs +0 -220
 - package/fesm2022/acorex-components-selection-list-legacy.mjs.map +0 -1
 - package/selection-list-legacy/README.md +0 -3
 - package/selection-list-legacy/index.d.ts +0 -93
 
| 
         @@ -175,6 +175,7 @@ class AXLeafletService { 
     | 
|
| 
       175 
175 
     | 
    
         
             
                        const map = this.L.map(mapElement).setView([location.latitude, location.longitude], zoom);
         
     | 
| 
       176 
176 
     | 
    
         
             
                        this.L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
         
     | 
| 
       177 
177 
     | 
    
         
             
                            maxZoom: 20,
         
     | 
| 
      
 178 
     | 
    
         
            +
                            noWrap: true,
         
     | 
| 
       178 
179 
     | 
    
         
             
                            attribution: '© ACoreX',
         
     | 
| 
       179 
180 
     | 
    
         
             
                        }).addTo(map);
         
     | 
| 
       180 
181 
     | 
    
         
             
                        this.drawnItems = new this.L.FeatureGroup();
         
     |