@skyux/assets 13.11.5 → 14.0.0-alpha.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skyux-assets.mjs","sources":["
|
|
1
|
+
{"version":3,"file":"skyux-assets.mjs","sources":["../../../../../libs/components/assets/src/lib/assets.service.ts","../../../../../libs/components/assets/src/skyux-assets.ts"],"sourcesContent":["/* istanbul ignore next */\n/**\n * An abstract class for injecting the ability to retrieve an asset file's URL at runtime.\n * The implementing class will be generated during build time.\n */\nexport abstract class SkyAppAssetsService {\n public abstract getUrl(path: string): string;\n public abstract getAllUrls(): Record<string, any>;\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAAA;AACA;;;AAGG;MACmB,mBAAmB,CAAA;AAGxC;;ACRD;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/assets",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.0-alpha.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -16,21 +16,21 @@
|
|
|
16
16
|
},
|
|
17
17
|
"homepage": "https://github.com/blackbaud/skyux#readme",
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@angular/common": "^
|
|
20
|
-
"@angular/core": "^
|
|
19
|
+
"@angular/common": "^21.0.8",
|
|
20
|
+
"@angular/core": "^21.0.8"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"tslib": "^2.8.1"
|
|
24
24
|
},
|
|
25
25
|
"sideEffects": false,
|
|
26
26
|
"module": "fesm2022/skyux-assets.mjs",
|
|
27
|
-
"typings": "
|
|
27
|
+
"typings": "types/skyux-assets.d.ts",
|
|
28
28
|
"exports": {
|
|
29
29
|
"./package.json": {
|
|
30
30
|
"default": "./package.json"
|
|
31
31
|
},
|
|
32
32
|
".": {
|
|
33
|
-
"types": "./
|
|
33
|
+
"types": "./types/skyux-assets.d.ts",
|
|
34
34
|
"default": "./fesm2022/skyux-assets.mjs"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
File without changes
|