@saasbase-io/core-elements 1.2.0 → 1.3.1
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/components/renderers/_updated/index.d.ts +1 -0
- package/dist/components/renderers/_updated/sb-container.d.ts +13 -0
- package/dist/components/renderers/_updated/sb-countdown.d.ts +5 -7
- package/dist/components/renderers/_updated/sb-gap.d.ts +2 -7
- package/dist/components/renderers/_updated/sb-header.d.ts +5 -6
- package/dist/components/renderers/_updated/sb-logo.d.ts +4 -5
- package/dist/components/renderers/_updated/sb-otp.d.ts +3 -3
- package/dist/components/renderers/_updated/sb-subtitle.d.ts +3 -3
- package/dist/components/renderers/_updated/sb-title.d.ts +3 -3
- package/dist/components/wrappers/base-element/base-element.d.ts +8 -0
- package/dist/index.js +551 -554
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3234 -3233
- package/dist/index.mjs.map +1 -1
- package/dist/stories/preview.stories.d.ts +5 -0
- package/dist/styles.css +27 -0
- package/package.json +7 -2
package/dist/styles.css
CHANGED
|
@@ -535,6 +535,33 @@ video {
|
|
|
535
535
|
.font-montserrat {
|
|
536
536
|
font-family: "Montserrat", sans-serif;
|
|
537
537
|
}
|
|
538
|
+
.sb-container{
|
|
539
|
+
width: 100%;
|
|
540
|
+
}
|
|
541
|
+
@media (min-width: 640px){
|
|
542
|
+
|
|
543
|
+
.sb-container{
|
|
544
|
+
max-width: 640px;
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
@media (min-width: 768px){
|
|
548
|
+
|
|
549
|
+
.sb-container{
|
|
550
|
+
max-width: 768px;
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
@media (min-width: 1024px){
|
|
554
|
+
|
|
555
|
+
.sb-container{
|
|
556
|
+
max-width: 1024px;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
@media (min-width: 1280px){
|
|
560
|
+
|
|
561
|
+
.sb-container{
|
|
562
|
+
max-width: 1280px;
|
|
563
|
+
}
|
|
564
|
+
}
|
|
538
565
|
.sb-fixed{
|
|
539
566
|
position: fixed;
|
|
540
567
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saasbase-io/core-elements",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "A collection saas based related components",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -26,7 +26,9 @@
|
|
|
26
26
|
"lint": "eslint 'src/**/*.{ts,tsx}' --fix",
|
|
27
27
|
"build:demo": "vite build --config vite.demo.config.ts",
|
|
28
28
|
"preview:demo": "vite preview --config vite.demo.config.ts",
|
|
29
|
-
"build:css": "postcss src/styles/tailwind.css -o dist/styles.css"
|
|
29
|
+
"build:css": "postcss src/styles/tailwind.css -o dist/styles.css",
|
|
30
|
+
"storybook": "storybook dev -p 6006",
|
|
31
|
+
"build-storybook": "storybook build"
|
|
30
32
|
},
|
|
31
33
|
"keywords": [
|
|
32
34
|
"lit",
|
|
@@ -36,6 +38,7 @@
|
|
|
36
38
|
],
|
|
37
39
|
"author": "team-saas-based",
|
|
38
40
|
"devDependencies": {
|
|
41
|
+
"@storybook/web-components-vite": "^10.3.6",
|
|
39
42
|
"@types/jsoneditor": "^9.9.5",
|
|
40
43
|
"@types/node": "^24.0.4",
|
|
41
44
|
"@types/react": "^19.0.0",
|
|
@@ -44,6 +47,7 @@
|
|
|
44
47
|
"@vitejs/plugin-react": "^4.6.0",
|
|
45
48
|
"autoprefixer": "^10.4.20",
|
|
46
49
|
"eslint": "^9.38.0",
|
|
50
|
+
"eslint-plugin-storybook": "^10.3.6",
|
|
47
51
|
"globals": "^16.4.0",
|
|
48
52
|
"lit": "^3.3.0",
|
|
49
53
|
"postcss": "^8.4.47",
|
|
@@ -60,6 +64,7 @@
|
|
|
60
64
|
"@lit/reactive-element": "^2.1.0",
|
|
61
65
|
"@revotech-group/revotech-ui-kit": "^0.2.5",
|
|
62
66
|
"@saasbase-io/loginflow-websdk": "^1.10.5",
|
|
67
|
+
"@storybook/web-components": "^10.3.6",
|
|
63
68
|
"jsoneditor": "^10.2.0",
|
|
64
69
|
"lit-html": "^3.3.0"
|
|
65
70
|
},
|