FieldSecurity.story.vue 608 B

12345678910111213141516171819202122232425
  1. <!-- Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. import { FormKit } from '@formkit/vue'
  4. import FormGroup from '../../FormGroup.vue'
  5. </script>
  6. <template>
  7. <Story>
  8. <Variant title="Allow all">
  9. <FormGroup>
  10. <FormKit
  11. type="security"
  12. label="Security"
  13. :allowed="['encryption', 'sign']"
  14. />
  15. </FormGroup>
  16. </Variant>
  17. <Variant title="Allow none">
  18. <FormGroup>
  19. <FormKit type="security" label="Security" :allowed="[]" />
  20. </FormGroup>
  21. </Variant>
  22. </Story>
  23. </template>