@wireweave/core 2.0.0 → 2.0.1-beta.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/index.cjs +2 -0
- package/dist/index.js +2 -0
- package/dist/renderer.cjs +2 -0
- package/dist/renderer.js +2 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6409,6 +6409,8 @@ function getTheme(name) {
|
|
|
6409
6409
|
function generateContainerStyles(prefix) {
|
|
6410
6410
|
return `/* Container Components */
|
|
6411
6411
|
.${prefix}-card {
|
|
6412
|
+
display: flex;
|
|
6413
|
+
flex-direction: column;
|
|
6412
6414
|
border: 1px solid var(--${prefix}-border);
|
|
6413
6415
|
border-radius: var(--${prefix}-radius);
|
|
6414
6416
|
background: var(--${prefix}-bg);
|
package/dist/index.js
CHANGED
|
@@ -6269,6 +6269,8 @@ function getTheme(name) {
|
|
|
6269
6269
|
function generateContainerStyles(prefix) {
|
|
6270
6270
|
return `/* Container Components */
|
|
6271
6271
|
.${prefix}-card {
|
|
6272
|
+
display: flex;
|
|
6273
|
+
flex-direction: column;
|
|
6272
6274
|
border: 1px solid var(--${prefix}-border);
|
|
6273
6275
|
border-radius: var(--${prefix}-radius);
|
|
6274
6276
|
background: var(--${prefix}-bg);
|
package/dist/renderer.cjs
CHANGED
|
@@ -93,6 +93,8 @@ function getTheme(name) {
|
|
|
93
93
|
function generateContainerStyles(prefix) {
|
|
94
94
|
return `/* Container Components */
|
|
95
95
|
.${prefix}-card {
|
|
96
|
+
display: flex;
|
|
97
|
+
flex-direction: column;
|
|
96
98
|
border: 1px solid var(--${prefix}-border);
|
|
97
99
|
border-radius: var(--${prefix}-radius);
|
|
98
100
|
background: var(--${prefix}-bg);
|
package/dist/renderer.js
CHANGED
|
@@ -55,6 +55,8 @@ function getTheme(name) {
|
|
|
55
55
|
function generateContainerStyles(prefix) {
|
|
56
56
|
return `/* Container Components */
|
|
57
57
|
.${prefix}-card {
|
|
58
|
+
display: flex;
|
|
59
|
+
flex-direction: column;
|
|
58
60
|
border: 1px solid var(--${prefix}-border);
|
|
59
61
|
border-radius: var(--${prefix}-radius);
|
|
60
62
|
background: var(--${prefix}-bg);
|