amp-workflow-ui 0.1.15 → 0.1.17
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/dist/index.js +1290 -1387
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1310 -1408
- package/dist/index.mjs.map +1 -1
- package/package.json +46 -44
- package/dist/index.css +0 -10
- package/dist/index.css.map +0 -1
package/package.json
CHANGED
|
@@ -1,44 +1,46 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "amp-workflow-ui",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Reusable Approval Workflow UI components (DialogOpener, ApprovalWorkflow) for Ampersand portals",
|
|
6
|
-
"main": "dist/index.cjs.js",
|
|
7
|
-
"module": "dist/index.esm.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"sideEffects":
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"@
|
|
22
|
-
"@
|
|
23
|
-
"
|
|
24
|
-
"@mui/
|
|
25
|
-
"@
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "amp-workflow-ui",
|
|
3
|
+
"version": "0.1.17",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Reusable Approval Workflow UI components (DialogOpener, ApprovalWorkflow) for Ampersand portals",
|
|
6
|
+
"main": "dist/index.cjs.js",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"sideEffects": [
|
|
10
|
+
"**/*.css"
|
|
11
|
+
],
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsup --config tsup.config.ts",
|
|
17
|
+
"dev": "tsup --config tsup.config.ts --watch",
|
|
18
|
+
"prepublishOnly": "npm run build"
|
|
19
|
+
},
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"@emotion/react": "^11.14.0",
|
|
22
|
+
"@emotion/styled": "^11.14.1",
|
|
23
|
+
"@mui/icons-material": "^5.18.0",
|
|
24
|
+
"@mui/material": "^5.18.0",
|
|
25
|
+
"@mui/system": "^5.11.13",
|
|
26
|
+
"react": "^18.2.0",
|
|
27
|
+
"react-dom": "^18.2.0",
|
|
28
|
+
"react-hot-toast": "^2.4.0"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"moment": "^2.30.1"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"tsup": "^8.0.1",
|
|
35
|
+
"typescript": "^5.6.3"
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public"
|
|
39
|
+
},
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/your-org/your-repo.git"
|
|
43
|
+
},
|
|
44
|
+
"author": "",
|
|
45
|
+
"license": "MIT"
|
|
46
|
+
}
|
package/dist/index.css
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/* src/ui/style.css */
|
|
2
|
-
.hide-scrollbar {
|
|
3
|
-
overflow: auto !important;
|
|
4
|
-
-ms-overflow-style: none !important;
|
|
5
|
-
scrollbar-width: none !important;
|
|
6
|
-
}
|
|
7
|
-
.hide-scrollbar::-webkit-scrollbar {
|
|
8
|
-
display: none !important;
|
|
9
|
-
}
|
|
10
|
-
/*# sourceMappingURL=index.css.map */
|
package/dist/index.css.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/ui/style.css"],"sourcesContent":[".hide-scrollbar {\r\n overflow: auto !important; /* Enable scrolling */\r\n /* For Internet Explorer, Edge, and Firefox */\r\n -ms-overflow-style: none !important;\r\n scrollbar-width: none !important;\r\n}\r\n\r\n.hide-scrollbar::-webkit-scrollbar {\r\n /* For Chrome, Safari, and Opera */\r\n display: none !important;\r\n}"],"mappings":";AAAA,CAAC;AACC,YAAU;AAEV,sBAAoB;AACpB,mBAAiB;AACnB;AAEA,CAPC,cAOc;AAEb,WAAS;AACX;","names":[]}
|