Update new functions

This commit is contained in:
2026-04-06 03:19:15 +02:00
parent f9095332eb
commit 294547fc56
139 changed files with 2249 additions and 2109 deletions

View File

@@ -49,7 +49,7 @@ const BasicDemo = () => {
})
]);
};
$mount(BasicDemo, '#demo-basic');
Mount(BasicDemo, '#demo-basic');
```
### With Label
@@ -75,7 +75,7 @@ const LabelDemo = () => {
})
]);
};
$mount(LabelDemo, '#demo-label');
Mount(LabelDemo, '#demo-label');
```
### Different Positions
@@ -119,7 +119,7 @@ const PositionsDemo = () => {
})
]);
};
$mount(PositionsDemo, '#demo-positions');
Mount(PositionsDemo, '#demo-positions');
```
### Color Variants
@@ -164,7 +164,7 @@ const ColorsDemo = () => {
})
]);
};
$mount(ColorsDemo, '#demo-colors');
Mount(ColorsDemo, '#demo-colors');
```
### Reactive Actions
@@ -210,7 +210,7 @@ const ReactiveActions = () => {
})
]);
};
$mount(ReactiveActions, '#demo-reactive');
Mount(ReactiveActions, '#demo-reactive');
```
### Document Actions
@@ -249,7 +249,7 @@ const DocumentActions = () => {
})
]);
};
$mount(DocumentActions, '#demo-document');
Mount(DocumentActions, '#demo-document');
```
### Messaging FAB
@@ -307,7 +307,7 @@ const MessagingFAB = () => {
})
]);
};
$mount(MessagingFAB, '#demo-messaging');
Mount(MessagingFAB, '#demo-messaging');
```
### Flower Style FAB
@@ -337,7 +337,7 @@ const FlowerDemo = () => {
})
]);
};
$mount(FlowerDemo, '#demo-flower');
Mount(FlowerDemo, '#demo-flower');
```
### All Variants
@@ -378,7 +378,7 @@ const VariantsDemo = () => {
])
]);
};
$mount(VariantsDemo, '#demo-variants');
Mount(VariantsDemo, '#demo-variants');
```
<script>
@@ -400,7 +400,7 @@ $mount(VariantsDemo, '#demo-variants');
})
]);
};
$mount(BasicDemo, basicTarget);
Mount(BasicDemo, basicTarget);
}
// 2. With Label
@@ -419,7 +419,7 @@ $mount(VariantsDemo, '#demo-variants');
})
]);
};
$mount(LabelDemo, labelTarget);
Mount(LabelDemo, labelTarget);
}
// 3. Different Positions
@@ -456,7 +456,7 @@ $mount(VariantsDemo, '#demo-variants');
})
]);
};
$mount(PositionsDemo, positionsTarget);
Mount(PositionsDemo, positionsTarget);
}
// 4. Color Variants
@@ -494,7 +494,7 @@ $mount(VariantsDemo, '#demo-variants');
})
]);
};
$mount(ColorsDemo, colorsTarget);
Mount(ColorsDemo, colorsTarget);
}
// 5. Reactive Actions
@@ -533,7 +533,7 @@ $mount(VariantsDemo, '#demo-variants');
})
]);
};
$mount(ReactiveActions, reactiveTarget);
Mount(ReactiveActions, reactiveTarget);
}
// 6. Document Actions
@@ -565,7 +565,7 @@ $mount(VariantsDemo, '#demo-variants');
})
]);
};
$mount(DocumentActions, documentTarget);
Mount(DocumentActions, documentTarget);
}
// 7. Messaging FAB
@@ -616,7 +616,7 @@ $mount(VariantsDemo, '#demo-variants');
})
]);
};
$mount(MessagingFAB, messagingTarget);
Mount(MessagingFAB, messagingTarget);
}
// 8. Flower Style FAB
@@ -639,7 +639,7 @@ $mount(VariantsDemo, '#demo-variants');
})
]);
};
$mount(FlowerDemo, flowerTarget);
Mount(FlowerDemo, flowerTarget);
}
// 9. All Variants
@@ -673,7 +673,7 @@ $mount(VariantsDemo, '#demo-variants');
])
]);
};
$mount(VariantsDemo, variantsTarget);
Mount(VariantsDemo, variantsTarget);
}
};