@plaidev/karte-action-sdk 1.1.102-27907779.4c21459a → 1.1.102-27907807.b94b50fa
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/hydrate/index.es.js +7 -7
- package/dist/index.es.js +7 -7
- package/package.json +11 -2
package/dist/hydrate/index.es.js
CHANGED
@@ -1596,17 +1596,17 @@ function collection(table) {
|
|
1596
1596
|
|
1597
1597
|
var widget = /*#__PURE__*/Object.freeze({
|
1598
1598
|
__proto__: null,
|
1599
|
-
|
1600
|
-
|
1601
|
-
setVal: setVal,
|
1599
|
+
collection: collection,
|
1600
|
+
getState: getState,
|
1602
1601
|
getVal: getVal,
|
1603
|
-
|
1602
|
+
hide: closeAction,
|
1604
1603
|
method: method,
|
1605
1604
|
on: on,
|
1605
|
+
onChangeVal: onChangeVal,
|
1606
1606
|
setState: setState,
|
1607
|
-
|
1608
|
-
|
1609
|
-
|
1607
|
+
setVal: setVal,
|
1608
|
+
show: showAction,
|
1609
|
+
storage: storage
|
1610
1610
|
});
|
1611
1611
|
|
1612
1612
|
/* src/components/Normalize.svelte generated by Svelte v3.53.1 */
|
package/dist/index.es.js
CHANGED
@@ -1709,17 +1709,17 @@ function collection(table) {
|
|
1709
1709
|
|
1710
1710
|
var widget = /*#__PURE__*/Object.freeze({
|
1711
1711
|
__proto__: null,
|
1712
|
-
|
1713
|
-
|
1714
|
-
setVal: setVal,
|
1712
|
+
collection: collection,
|
1713
|
+
getState: getState,
|
1715
1714
|
getVal: getVal,
|
1716
|
-
|
1715
|
+
hide: closeAction,
|
1717
1716
|
method: method,
|
1718
1717
|
on: on,
|
1718
|
+
onChangeVal: onChangeVal,
|
1719
1719
|
setState: setState,
|
1720
|
-
|
1721
|
-
|
1722
|
-
|
1720
|
+
setVal: setVal,
|
1721
|
+
show: showAction,
|
1722
|
+
storage: storage
|
1723
1723
|
});
|
1724
1724
|
|
1725
1725
|
/* src/components/Normalize.svelte generated by Svelte v3.53.1 */
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@plaidev/karte-action-sdk",
|
3
|
-
"version": "1.1.102-
|
3
|
+
"version": "1.1.102-27907807.b94b50fa",
|
4
4
|
"author": "Plaid Inc.",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"module": "./dist/index.es.js",
|
@@ -44,6 +44,8 @@
|
|
44
44
|
"LICENSE"
|
45
45
|
],
|
46
46
|
"devDependencies": {
|
47
|
+
"@microsoft/api-documenter": "7.19.28",
|
48
|
+
"@microsoft/api-extractor": "7.33.8",
|
47
49
|
"@plaidev/action-compiler": "workspace:*",
|
48
50
|
"@plaidev/sender-types": "workspace:*",
|
49
51
|
"@rollup/plugin-alias": "^4.0.0",
|
@@ -82,6 +84,7 @@
|
|
82
84
|
"svelte-preprocess": "4.9.8",
|
83
85
|
"tslib": "^2.3.1",
|
84
86
|
"typescript": "^4.7.4",
|
87
|
+
"vitepress": "1.0.0-alpha.30",
|
85
88
|
"vitest": "latest"
|
86
89
|
},
|
87
90
|
"scripts": {
|
@@ -92,9 +95,15 @@
|
|
92
95
|
"setup:template": "jiti ./scripts/template.ts",
|
93
96
|
"setup:concat": "jiti ./scripts/concat.ts",
|
94
97
|
"setup:compile": "jiti ./scripts/compile.ts",
|
95
|
-
"prepare": "yarn setup:default && yarn setup:template && yarn setup:concat",
|
98
|
+
"prepare": "yarn setup:default && yarn setup:template && yarn setup:concat && yarn build",
|
96
99
|
"build": "rollup --config rollup.config.ts --configPlugin rollup-plugin-ts",
|
97
100
|
"build:watch": "rollup --config rollup.config.ts --configPlugin rollup-plugin-ts -w",
|
101
|
+
"docs:dev": "vitepress dev docs",
|
102
|
+
"docs:build": "vitepress build docs",
|
103
|
+
"docs:preview": "vitepress preview docs",
|
104
|
+
"docs:api": "yarn docs:api:setup && yarn docs:api:gen",
|
105
|
+
"docs:api:setup": "api-extractor run --local --verbose",
|
106
|
+
"docs:api:gen": "api-documenter markdown --input-folder ./tmp --output-folder ./tmp/markdown && mv ./tmp/markdown/* ./docs",
|
98
107
|
"check:svelte": "svelte-check --tsconfig ./tsconfig.json",
|
99
108
|
"check:type": "tsc --noEmit",
|
100
109
|
"test": "vitest run test",
|