@spscommerce/ds-shared 8.34.12 → 8.34.14
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/lib/sps-action.d.ts +1 -0
- package/package.json +6 -6
- package/vite.config.mjs +1 -1
package/lib/sps-action.d.ts
CHANGED
@@ -11,6 +11,7 @@ export interface SpsActionDescriptor {
|
|
11
11
|
isLink?: MetadataProperty<boolean>;
|
12
12
|
href?: MetadataProperty<string>;
|
13
13
|
newTab?: MetadataProperty<boolean>;
|
14
|
+
[key: string]: MetadataProperty<any>;
|
14
15
|
}
|
15
16
|
export declare const SPS_ACTION_DEFAULTS: SpsActionDescriptor;
|
16
17
|
/** A method that has been decorated with `@SpsAction`. */
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@spscommerce/ds-shared",
|
3
3
|
"description": "Package for sharing code and types between DS Angular and DS React.",
|
4
|
-
"version": "8.34.
|
4
|
+
"version": "8.34.14",
|
5
5
|
"author": "SPS Commerce",
|
6
6
|
"license": "UNLICENSED",
|
7
7
|
"repository": "https://github.com/spscommerce/woodland/tree/main/packages/@spscommerce/ds-shared",
|
@@ -14,20 +14,20 @@
|
|
14
14
|
"main": "./lib/index.umd.cjs",
|
15
15
|
"types": "./lib/index.d.ts",
|
16
16
|
"exports": {
|
17
|
+
"types": "./lib/index.d.ts",
|
17
18
|
"require": "./lib/index.umd.cjs",
|
18
19
|
"import": "./lib/index.js",
|
19
|
-
"default": "./lib/index.js"
|
20
|
-
"types": "./lib/index.d.ts"
|
20
|
+
"default": "./lib/index.js"
|
21
21
|
},
|
22
22
|
"peerDependencies": {
|
23
|
-
"@spscommerce/utils": "^7.0.0",
|
23
|
+
"@spscommerce/utils": "^7.0.0 || ^8.0.0",
|
24
24
|
"moment": "^2.25.3",
|
25
25
|
"moment-timezone": "^0.5.48"
|
26
26
|
},
|
27
27
|
"devDependencies": {
|
28
|
-
"@spscommerce/utils": "^
|
28
|
+
"@spscommerce/utils": "^8.1.1",
|
29
29
|
"moment": "^2.25.3",
|
30
|
-
"moment-timezone": "^0.
|
30
|
+
"moment-timezone": "^0.6.0"
|
31
31
|
},
|
32
32
|
"scripts": {
|
33
33
|
"build": "pnpm run build:js && pnpm run build:types",
|
package/vite.config.mjs
CHANGED