@apteva/apteva-kit 0.1.9 → 0.1.11
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.d.mts +8 -2
- package/dist/index.d.ts +8 -2
- package/dist/index.js +437 -113
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +592 -268
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@layer components{@keyframes blink{0%,to{opacity:1}50%{opacity:0}}@keyframes slideUp{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate-slideUp{animation:.2s ease-out slideUp}}
|
|
1
|
+
@layer components{@keyframes blink{0%,to{opacity:1}50%{opacity:0}}@keyframes slideUp{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate-slideUp{animation:.2s ease-out slideUp}.apteva-scrollbar-hidden{-ms-overflow-style:none;scrollbar-width:none}.apteva-scrollbar-hidden::-webkit-scrollbar{display:none}.apteva-md{white-space:pre-wrap!important;font-size:.875rem!important;line-height:1.625!important}.apteva-md-h2{all:unset!important;margin-top:.75rem!important;margin-bottom:.25rem!important;font-size:1.125rem!important;font-weight:600!important;line-height:1.3!important;display:block!important}.apteva-md-h3{all:unset!important;margin-top:.5rem!important;margin-bottom:.125rem!important;font-size:1rem!important;font-weight:600!important;line-height:1.3!important;display:block!important}.apteva-md-ul{all:unset!important;margin-top:.5rem!important;margin-bottom:.5rem!important;padding-left:1.5rem!important;list-style-type:disc!important;list-style-position:outside!important;display:block!important}.apteva-md-ol{all:unset!important;margin-top:.5rem!important;margin-bottom:.5rem!important;padding-left:1.5rem!important;list-style-type:decimal!important;list-style-position:outside!important;display:block!important}.apteva-md-li{all:unset!important;margin-bottom:.25rem!important;padding-left:.25rem!important;display:list-item!important}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apteva/apteva-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "AI-powered React component library for building interactive agent interfaces",
|
|
5
5
|
"author": "Apteva",
|
|
6
6
|
"license": "MIT",
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"tailwind-merge": "^2.2.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
+
"@tailwindcss/cli": "^4",
|
|
56
57
|
"@types/react": "^19",
|
|
57
58
|
"@types/react-dom": "^19",
|
|
58
|
-
"@tailwindcss/cli": "^4",
|
|
59
59
|
"react": "^19",
|
|
60
60
|
"react-dom": "^19",
|
|
61
61
|
"tailwindcss": "^4",
|