Skip to content

Commit 5944eca

Browse files
committed
add class names
1 parent a9f0f87 commit 5944eca

36 files changed

+36
-0
lines changed

reflex_ui/components/base/accordion.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ class Accordion(ComponentNamespace):
290290
header = staticmethod(AccordionHeader.create)
291291
trigger = staticmethod(AccordionTrigger.create)
292292
panel = staticmethod(AccordionPanel.create)
293+
class_names = ClassNames
293294
__call__ = staticmethod(HighLevelAccordion.create)
294295

295296

reflex_ui/components/base/accordion.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,7 @@ class Accordion(ComponentNamespace):
362362
header = staticmethod(AccordionHeader.create)
363363
trigger = staticmethod(AccordionTrigger.create)
364364
panel = staticmethod(AccordionPanel.create)
365+
class_names = ClassNames
365366

366367
@staticmethod
367368
def __call__(

reflex_ui/components/base/avatar.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ class Avatar(ComponentNamespace):
123123
root = staticmethod(AvatarRoot.create)
124124
image = staticmethod(AvatarImage.create)
125125
fallback = staticmethod(AvatarFallback.create)
126+
class_names = ClassNames
126127
__call__ = staticmethod(HighLevelAvatar.create)
127128

128129

reflex_ui/components/base/avatar.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ class Avatar(ComponentNamespace):
229229
root = staticmethod(AvatarRoot.create)
230230
image = staticmethod(AvatarImage.create)
231231
fallback = staticmethod(AvatarFallback.create)
232+
class_names = ClassNames
232233

233234
@staticmethod
234235
def __call__(

reflex_ui/components/base/card.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ class Card(ComponentNamespace):
143143
description = staticmethod(CardDescription.create)
144144
content = staticmethod(CardContent.create)
145145
footer = staticmethod(CardFooter.create)
146+
class_names = ClassNames
146147
__call__ = staticmethod(HighLevelCard.create)
147148

148149

reflex_ui/components/base/card.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1775,6 +1775,7 @@ class Card(ComponentNamespace):
17751775
description = staticmethod(CardDescription.create)
17761776
content = staticmethod(CardContent.create)
17771777
footer = staticmethod(CardFooter.create)
1778+
class_names = ClassNames
17781779

17791780
@staticmethod
17801781
def __call__(

reflex_ui/components/base/checkbox.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ class CheckboxNamespace(ComponentNamespace):
133133
root = staticmethod(CheckboxRoot.create)
134134
indicator = staticmethod(CheckboxIndicator.create)
135135
high_level = staticmethod(HighLevelCheckbox.create)
136+
class_names = ClassNames
136137
__call__ = staticmethod(HighLevelCheckbox.create)
137138

138139

reflex_ui/components/base/checkbox.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ class CheckboxNamespace(ComponentNamespace):
240240
root = staticmethod(CheckboxRoot.create)
241241
indicator = staticmethod(CheckboxIndicator.create)
242242
high_level = staticmethod(HighLevelCheckbox.create)
243+
class_names = ClassNames
243244

244245
@staticmethod
245246
def __call__(

reflex_ui/components/base/collapsible.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ class Collapsible(ComponentNamespace):
134134
root = staticmethod(CollapsibleRoot.create)
135135
trigger = staticmethod(CollapsibleTrigger.create)
136136
panel = staticmethod(CollapsiblePanel.create)
137+
class_names = ClassNames
137138
__call__ = staticmethod(HighLevelCollapsible.create)
138139

139140

reflex_ui/components/base/collapsible.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ class Collapsible(ComponentNamespace):
236236
root = staticmethod(CollapsibleRoot.create)
237237
trigger = staticmethod(CollapsibleTrigger.create)
238238
panel = staticmethod(CollapsiblePanel.create)
239+
class_names = ClassNames
239240

240241
@staticmethod
241242
def __call__(

0 commit comments

Comments
 (0)