@makolabs/ripple 0.0.1-dev.1 → 0.0.1-dev.2
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/layout/Card.svelte +19 -19
- package/package.json +24 -2
package/dist/layout/Card.svelte
CHANGED
|
@@ -14,17 +14,17 @@
|
|
|
14
14
|
'2xl': 'p-8'
|
|
15
15
|
},
|
|
16
16
|
color: {
|
|
17
|
-
'default': 'bg-default-50
|
|
18
|
-
'primary': 'bg-primary-50
|
|
19
|
-
'secondary': 'bg-secondary-50
|
|
20
|
-
'info': 'bg-info-50
|
|
21
|
-
'success': 'bg-success-50
|
|
22
|
-
'warning': 'bg-warning-50
|
|
17
|
+
'default': 'bg-default-50',
|
|
18
|
+
'primary': 'bg-primary-50',
|
|
19
|
+
'secondary': 'bg-secondary-50',
|
|
20
|
+
'info': 'bg-info-50',
|
|
21
|
+
'success': 'bg-success-50',
|
|
22
|
+
'warning': 'bg-warning-50',
|
|
23
23
|
'danger': 'bg-danger-50 dark:bg-danger-900/20'
|
|
24
24
|
},
|
|
25
25
|
border: {
|
|
26
26
|
'none': 'border-0',
|
|
27
|
-
'default': 'border border-gray-200
|
|
27
|
+
'default': 'border border-gray-200',
|
|
28
28
|
'colored': 'border'
|
|
29
29
|
},
|
|
30
30
|
rounded: {
|
|
@@ -62,12 +62,12 @@
|
|
|
62
62
|
const cardTitleVariants = tv({
|
|
63
63
|
variants: {
|
|
64
64
|
color: {
|
|
65
|
-
'default': 'text-default-900
|
|
66
|
-
'primary': 'text-primary-900
|
|
67
|
-
'secondary': 'text-secondary-900
|
|
68
|
-
'info': 'text-info-900
|
|
69
|
-
'success': 'text-success-900
|
|
70
|
-
'warning': 'text-warning-900
|
|
65
|
+
'default': 'text-default-900',
|
|
66
|
+
'primary': 'text-primary-900',
|
|
67
|
+
'secondary': 'text-secondary-900',
|
|
68
|
+
'info': 'text-info-900',
|
|
69
|
+
'success': 'text-success-900',
|
|
70
|
+
'warning': 'text-warning-900',
|
|
71
71
|
'danger': 'text-danger-900 dark:text-danger-100'
|
|
72
72
|
},
|
|
73
73
|
weight: {
|
|
@@ -88,12 +88,12 @@
|
|
|
88
88
|
const cardBodyVariants = tv({
|
|
89
89
|
variants: {
|
|
90
90
|
color: {
|
|
91
|
-
'default': 'text-default-700
|
|
92
|
-
'primary': 'text-primary-700
|
|
93
|
-
'secondary': 'text-secondary-700
|
|
94
|
-
'info': 'text-info-700
|
|
95
|
-
'success': 'text-success-700
|
|
96
|
-
'warning': 'text-warning-700
|
|
91
|
+
'default': 'text-default-700',
|
|
92
|
+
'primary': 'text-primary-700',
|
|
93
|
+
'secondary': 'text-secondary-700',
|
|
94
|
+
'info': 'text-info-700',
|
|
95
|
+
'success': 'text-success-700',
|
|
96
|
+
'warning': 'text-warning-700',
|
|
97
97
|
'danger': 'text-danger-700 dark:text-danger-300'
|
|
98
98
|
},
|
|
99
99
|
size: SIZE_TEXT_VARIANTS
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@makolabs/ripple",
|
|
3
|
-
"version": "0.0.1-dev.
|
|
3
|
+
"version": "0.0.1-dev.2",
|
|
4
4
|
"description": "Simple Svelte 5 powered component library ✨",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -73,7 +73,29 @@
|
|
|
73
73
|
"vitest": "^3.0.0"
|
|
74
74
|
},
|
|
75
75
|
"keywords": [
|
|
76
|
-
"svelte"
|
|
76
|
+
"svelte",
|
|
77
|
+
"ui",
|
|
78
|
+
"svelte5",
|
|
79
|
+
"modal",
|
|
80
|
+
"navigation",
|
|
81
|
+
"ripple",
|
|
82
|
+
"button",
|
|
83
|
+
"sidebar",
|
|
84
|
+
"card",
|
|
85
|
+
"dropdown",
|
|
86
|
+
"tooltip",
|
|
87
|
+
"accordion",
|
|
88
|
+
"tabs",
|
|
89
|
+
"alert",
|
|
90
|
+
"badge",
|
|
91
|
+
"breadcrumb",
|
|
92
|
+
"carousel",
|
|
93
|
+
"collapse",
|
|
94
|
+
"list-group",
|
|
95
|
+
"pagination",
|
|
96
|
+
"progress",
|
|
97
|
+
"spinner",
|
|
98
|
+
"toast"
|
|
77
99
|
],
|
|
78
100
|
"dependencies": {
|
|
79
101
|
"tailwind-merge": "^3.0.2",
|