@plaidev/karte-action-sdk 1.1.261 → 1.1.262-29016950.d6ccaa08
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 +286 -112
- package/dist/hydrate/index.es.js +3748 -1028
- package/dist/index.es.d.ts +286 -112
- package/dist/index.es.js +3425 -900
- package/dist/templates.cjs.js +11 -1
- package/dist/templates.js +11 -1
- package/package.json +6 -6
package/dist/templates.cjs.js
CHANGED
@@ -59,8 +59,18 @@ import {
|
|
59
59
|
FlexImage,
|
60
60
|
FlexModal,
|
61
61
|
FlexSlider,
|
62
|
+
FlexSliderItem,
|
62
63
|
FlexCloseButton,
|
63
|
-
FlexCode
|
64
|
+
FlexCode,
|
65
|
+
FlexList,
|
66
|
+
FlexListItem,
|
67
|
+
FlexMultiColumn,
|
68
|
+
FlexMultiColumnItem,
|
69
|
+
FlexRichText,
|
70
|
+
FlexYoutube,
|
71
|
+
FlexCountDown,
|
72
|
+
FlexCountDownValue,
|
73
|
+
FlexClipCopy,
|
64
74
|
} from '@plaidev/karte-action-sdk';
|
65
75
|
|
66
76
|
${icons.length > 0
|
package/dist/templates.js
CHANGED
@@ -57,8 +57,18 @@ import {
|
|
57
57
|
FlexImage,
|
58
58
|
FlexModal,
|
59
59
|
FlexSlider,
|
60
|
+
FlexSliderItem,
|
60
61
|
FlexCloseButton,
|
61
|
-
FlexCode
|
62
|
+
FlexCode,
|
63
|
+
FlexList,
|
64
|
+
FlexListItem,
|
65
|
+
FlexMultiColumn,
|
66
|
+
FlexMultiColumnItem,
|
67
|
+
FlexRichText,
|
68
|
+
FlexYoutube,
|
69
|
+
FlexCountDown,
|
70
|
+
FlexCountDownValue,
|
71
|
+
FlexClipCopy,
|
62
72
|
} from '@plaidev/karte-action-sdk';
|
63
73
|
|
64
74
|
${icons.length > 0
|
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.262-29016950.d6ccaa08",
|
4
4
|
"author": "Plaid Inc.",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"module": "./dist/index.es.js",
|
@@ -66,14 +66,14 @@
|
|
66
66
|
"@rollup/plugin-replace": "^5.0.0",
|
67
67
|
"@sveltejs/vite-plugin-svelte": "1.0.0-next.37",
|
68
68
|
"@testing-library/svelte": "^5.2.4",
|
69
|
-
"@tsconfig/svelte": "^
|
69
|
+
"@tsconfig/svelte": "^3.0.0",
|
70
70
|
"@types/brotli": "^1.3.1",
|
71
71
|
"@types/serve-static": "^1.13.10",
|
72
72
|
"brotli": "^1.3.3",
|
73
73
|
"c8": "^7.12.0",
|
74
74
|
"csstype": "^3.1.3",
|
75
|
-
"jsdom": "24.1.0",
|
76
75
|
"isomorphic-fetch": "3.0.0",
|
76
|
+
"jsdom": "24.1.0",
|
77
77
|
"listhen": "^0.2.13",
|
78
78
|
"node-fetch": "2.6.7",
|
79
79
|
"picocolors": "^1.0.0",
|
@@ -100,7 +100,7 @@
|
|
100
100
|
"tsx": "^4.19.2",
|
101
101
|
"typescript": "^4.7.4",
|
102
102
|
"vitepress": "1.0.0-alpha.30",
|
103
|
-
"vitest": "
|
103
|
+
"vitest": "3.0.5",
|
104
104
|
"@plaidev/action-compiler": "0.4.231"
|
105
105
|
},
|
106
106
|
"dependencies": {
|
@@ -118,7 +118,7 @@
|
|
118
118
|
"build": "rollup --config rollup.config.ts --configPlugin rollup-plugin-ts",
|
119
119
|
"build:api": "api-extractor run --local --verbose",
|
120
120
|
"build:watch": "rollup --config rollup.config.ts --configPlugin rollup-plugin-ts -w",
|
121
|
-
"lint:text": "textlint --config .textlintrc.json ./
|
121
|
+
"lint:text": "textlint --config .textlintrc.json ./docs",
|
122
122
|
"clean": "rm -rf dist __dist__ docs/**.md",
|
123
123
|
"docs:dev": "vitepress dev docs",
|
124
124
|
"docs:build": "vitepress build docs",
|
@@ -130,7 +130,7 @@
|
|
130
130
|
"test:watch": "vitest test",
|
131
131
|
"test:ui": "vitest test --ui",
|
132
132
|
"test:e2e": "vitest run spec",
|
133
|
-
"test:update": "vitest -u",
|
133
|
+
"test:update": "vitest run -u",
|
134
134
|
"coverage": "vitest run test --coverage",
|
135
135
|
"icons:update": "tsx ./scripts/update-icons.ts && prettier -w ./src/icons.ts",
|
136
136
|
"update:version": "COREPACK_ENABLE_STRICT=0 npm version patch",
|