@onereach/ui-components 2.74.4-beta.2307.0 → 2.74.4-beta.2312.0
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/package.json
CHANGED
|
@@ -77,6 +77,7 @@ export const ComplexContainer: StoryFn<typeof OrText> = (args) => ({
|
|
|
77
77
|
},
|
|
78
78
|
|
|
79
79
|
template: `
|
|
80
|
+
<div class="w-full">
|
|
80
81
|
<h3 class="typography-headline-3 mb-md">Flex container side effect</h3>
|
|
81
82
|
<div class="w-[300px] flex bg-surface-2 dark:bg-surface-2-dark">
|
|
82
83
|
<!-- fixed part -->
|
|
@@ -100,8 +101,9 @@ export const ComplexContainer: StoryFn<typeof OrText> = (args) => ({
|
|
|
100
101
|
<!-- fixed part -->
|
|
101
102
|
<div class="w-[20px]" />
|
|
102
103
|
<!-- growing part -->
|
|
103
|
-
<OrText v-bind="args" class="grow px-md min-w-0"/>
|
|
104
|
+
<OrText v-bind="args" class="grow px-md min-w-0" />
|
|
104
105
|
</div>
|
|
106
|
+
</div>
|
|
105
107
|
`,
|
|
106
108
|
});
|
|
107
109
|
ComplexContainer.storyName = 'Growing Flex Container';
|