@plaidev/karte-action-sdk 1.1.108 → 1.1.109-27920272.d0a496d3
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.d.ts +74 -14
- package/dist/hydrate/index.es.js +1206 -482
- package/dist/index.es.d.ts +74 -14
- package/dist/index.es.js +1135 -480
- package/dist/templates.js +3 -1
- package/package.json +4 -5
package/dist/templates.js
CHANGED
|
@@ -28,10 +28,12 @@ import {
|
|
|
28
28
|
EmbedElement,
|
|
29
29
|
MovieYouTubeElement,
|
|
30
30
|
MovieVimeoElement,
|
|
31
|
-
Form,
|
|
32
31
|
FormTextarea,
|
|
33
32
|
FormButton,
|
|
34
33
|
FormRadioButtons,
|
|
34
|
+
FormSelect,
|
|
35
|
+
Slider,
|
|
36
|
+
SliderItem,
|
|
35
37
|
} from '@plaidev/karte-action-sdk';
|
|
36
38
|
|
|
37
39
|
export let send: (event_name: string, values?: any) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plaidev/karte-action-sdk",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.109-27920272.d0a496d3",
|
|
4
4
|
"author": "Plaid Inc.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"playwright": "^1.23.4",
|
|
71
71
|
"preact": "10.5.7",
|
|
72
72
|
"rimraf": "^3.0.2",
|
|
73
|
-
"rollup": "^3.
|
|
73
|
+
"rollup": "^3.12.0",
|
|
74
74
|
"rollup-plugin-http-resolve": "4.0.1-alpha.0",
|
|
75
75
|
"rollup-plugin-livereload": "^2.0.0",
|
|
76
76
|
"rollup-plugin-serve": "^2.0.0",
|
|
@@ -95,14 +95,13 @@
|
|
|
95
95
|
"setup:template": "jiti ./scripts/template.ts",
|
|
96
96
|
"setup:concat": "jiti ./scripts/concat.ts",
|
|
97
97
|
"setup:compile": "jiti ./scripts/compile.ts",
|
|
98
|
+
"prepare": "yarn setup:default && yarn setup:template && yarn setup:concat && yarn build",
|
|
98
99
|
"build": "rollup --config rollup.config.ts --configPlugin rollup-plugin-ts",
|
|
99
100
|
"build:watch": "rollup --config rollup.config.ts --configPlugin rollup-plugin-ts -w",
|
|
100
101
|
"docs:dev": "vitepress dev docs",
|
|
101
102
|
"docs:build": "vitepress build docs",
|
|
102
103
|
"docs:preview": "vitepress preview docs",
|
|
103
|
-
"docs:api": "
|
|
104
|
-
"docs:api:setup": "api-extractor run --local --verbose",
|
|
105
|
-
"docs:api:gen": "api-documenter markdown --input-folder ./tmp --output-folder ./tmp/markdown && mv ./tmp/markdown/* ./docs",
|
|
104
|
+
"docs:api": "api-extractor run --local --verbose && api-documenter markdown --input-folder ./temp --output-folder ./temp/markdown && mv ./temp/markdown/* ./docs",
|
|
106
105
|
"check:svelte": "svelte-check --tsconfig ./tsconfig.json",
|
|
107
106
|
"check:type": "tsc --noEmit",
|
|
108
107
|
"test": "vitest run test",
|