@globalbrain/sefirot 2.49.0 → 3.1.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.
Files changed (34) hide show
  1. package/lib/components/SActionList.vue +23 -0
  2. package/lib/components/SActionListItem.vue +64 -0
  3. package/lib/components/SAvatar.vue +1 -1
  4. package/lib/components/SButton.vue +378 -392
  5. package/lib/components/SCard.vue +5 -5
  6. package/lib/components/SCardHeader.vue +1 -1
  7. package/lib/components/SCardHeaderTitle.vue +4 -4
  8. package/lib/components/SContent.vue +2 -2
  9. package/lib/components/SDescItem.vue +1 -1
  10. package/lib/components/SDescLink.vue +2 -2
  11. package/lib/components/SDescText.vue +2 -2
  12. package/lib/components/SDropdown.vue +1 -1
  13. package/lib/components/SDropdownSectionFilter.vue +8 -9
  14. package/lib/components/SDropdownSectionMenu.vue +1 -1
  15. package/lib/components/SHeadLead.vue +2 -2
  16. package/lib/components/SHeadTitle.vue +4 -4
  17. package/lib/components/SInputBase.vue +5 -5
  18. package/lib/components/SInputCheckbox.vue +5 -5
  19. package/lib/components/SInputImage.vue +239 -0
  20. package/lib/components/SInputRadio.vue +4 -4
  21. package/lib/components/SSheet.vue +1 -1
  22. package/lib/components/SState.vue +7 -7
  23. package/lib/components/STableCell.vue +1 -1
  24. package/lib/components/STableColumn.vue +1 -1
  25. package/lib/components/STableHeader.vue +1 -1
  26. package/lib/components/STableHeaderActionItem.vue +1 -1
  27. package/lib/composables/Image.ts +46 -0
  28. package/lib/composables/Table.ts +6 -5
  29. package/lib/styles/base.css +1 -1
  30. package/lib/styles/bootstrap.css +1 -0
  31. package/lib/styles/variables-deprecated.css +336 -0
  32. package/lib/styles/variables.css +582 -578
  33. package/lib/support/Utils.ts +4 -0
  34. package/package.json +1 -1
@@ -17,3 +17,7 @@ export function isArray(value: unknown): value is unknown[] {
17
17
  export function isObject(value: unknown): value is Record<string, any> {
18
18
  return typeof value === 'object' && value !== null && !isArray(value)
19
19
  }
20
+
21
+ export function isFile(value: unknown): value is File {
22
+ return value instanceof File
23
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@globalbrain/sefirot",
3
- "version": "2.49.0",
3
+ "version": "3.1.0",
4
4
  "packageManager": "pnpm@8.8.0",
5
5
  "description": "Vue Components for Global Brain Design System.",
6
6
  "author": "Kia Ishii <ka.ishii@globalbrains.com>",