@sps-woodland/editable-table 8.53.7 → 8.53.8
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/index.umd.cjs +1 -1
- package/package.json +5 -5
- package/vite.config.mjs +17 -14
package/lib/index.umd.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(e,n){typeof exports=="object"&&typeof module<"u"?n(exports,require("@sps-woodland/core/editable-table"),require("react")):typeof define=="function"&&define.amd?define(["exports","@sps-woodland/core/editable-table","react"],n):(e=typeof globalThis<"u"?globalThis:e||self,n(e.EditableTable={},e.
|
|
1
|
+
(function(e,n){typeof exports=="object"&&typeof module<"u"?n(exports,require("@sps-woodland/core/editable-table"),require("react")):typeof define=="function"&&define.amd?define(["exports","@sps-woodland/core/editable-table","react"],n):(e=typeof globalThis<"u"?globalThis:e||self,n(e.EditableTable={},e.spsWoodlandCoreEditableTable,e.react))})(this,(function(e,n,i){"use strict";function c(t){const a=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const o in t)if(o!=="default"){const l=Object.getOwnPropertyDescriptor(t,o);Object.defineProperty(a,o,l.get?l:{enumerable:!0,get:()=>t[o]})}}return a.default=t,Object.freeze(a)}const r=c(i),d={"Editable Tables":{components:[n.EditableTable],description:()=>r.createElement(r.Fragment,null),examples:{}}};e.MANIFEST=d,Object.keys(n).forEach(t=>{t!=="default"&&!Object.prototype.hasOwnProperty.call(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:()=>n[t]})}),Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})}));
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sps-woodland/editable-table",
|
|
3
3
|
"description": "SPS Woodland Design System Editable Table component",
|
|
4
|
-
"version": "8.53.
|
|
4
|
+
"version": "8.53.8",
|
|
5
5
|
"author": "SPS Commerce",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"repository": "https://github.com/SPSCommerce/woodland/tree/main/packages/@sps-woodland/editable-table",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
"@spscommerce/utils": "^7.0.0 || ^8.0.0 || ^9.0.0",
|
|
34
34
|
"react": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
35
35
|
"react-dom": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
36
|
-
"@sps-woodland/core": "8.53.
|
|
37
|
-
"@sps-woodland/tokens": "8.53.
|
|
36
|
+
"@sps-woodland/core": "8.53.8",
|
|
37
|
+
"@sps-woodland/tokens": "8.53.8"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@spscommerce/utils": "9.0.3",
|
|
41
41
|
"react": "16.14.0",
|
|
42
42
|
"react-dom": "16.14.0",
|
|
43
|
-
"@sps-woodland/core": "8.53.
|
|
44
|
-
"@sps-woodland/tokens": "8.53.
|
|
43
|
+
"@sps-woodland/core": "8.53.8",
|
|
44
|
+
"@sps-woodland/tokens": "8.53.8"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"build": "pnpm run build:js && pnpm run build:types && pnpm run build:css",
|
package/vite.config.mjs
CHANGED
|
@@ -2,19 +2,22 @@ import path from "node:path";
|
|
|
2
2
|
import { defineConfig } from "vite";
|
|
3
3
|
import pkg from "./package.json";
|
|
4
4
|
import { getPeerDepsExternal } from "../../../scripts/get-peer-deps-external.mjs";
|
|
5
|
+
import { withOutputGlobals } from "../../../scripts/with-output-globals.mjs";
|
|
5
6
|
|
|
6
|
-
export default defineConfig(
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
export default defineConfig(
|
|
8
|
+
withOutputGlobals({
|
|
9
|
+
build: {
|
|
10
|
+
lib: {
|
|
11
|
+
entry: path.resolve(__dirname, "src/index.ts"),
|
|
12
|
+
name: "EditableTable",
|
|
13
|
+
fileName: "index",
|
|
14
|
+
},
|
|
15
|
+
outDir: path.resolve(__dirname, "./lib"),
|
|
16
|
+
emptyOutDir: false,
|
|
17
|
+
rollupOptions: {
|
|
18
|
+
// External must match subpath imports like @sps-woodland/core/editable-table
|
|
19
|
+
external: getPeerDepsExternal(pkg),
|
|
20
|
+
},
|
|
12
21
|
},
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
rollupOptions: {
|
|
16
|
-
// External must match subpath imports like @sps-woodland/core/editable-table
|
|
17
|
-
external: getPeerDepsExternal(pkg),
|
|
18
|
-
},
|
|
19
|
-
},
|
|
20
|
-
});
|
|
22
|
+
})
|
|
23
|
+
);
|