@plaidev/karte-action-sdk 1.1.102 → 1.1.103-27909115.90a8e84c

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/templates.js CHANGED
@@ -27,6 +27,10 @@ import {
27
27
  ImageElement,
28
28
  TextButtonElement,
29
29
  EmbedElement,
30
+ Form,
31
+ FormTextarea,
32
+ FormButton,
33
+ FormRadioButtons,
30
34
 
31
35
  // svelte-ignore unused-export-let @ts-ignore
32
36
  } from '@plaidev/karte-action-sdk';
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.103-27909115.90a8e84c",
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",