@digital-ai/dot-components 1.1.1 → 1.3.1

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 (50) hide show
  1. package/README.md +1 -1
  2. package/dot-components.esm.js +2402 -1076
  3. package/dot-components.umd.js +2368 -1032
  4. package/fonts/dot.woff +0 -0
  5. package/fonts/selection.json +651 -444
  6. package/lib/components/BaseButtonProps.d.ts +3 -1
  7. package/lib/components/app-logo/AppLogo.d.ts +11 -0
  8. package/lib/components/app-toolbar/AppToolbar.d.ts +5 -1
  9. package/lib/components/app-toolbar/AppToolbar.styles.d.ts +1 -0
  10. package/lib/components/avatar/Avatar.d.ts +3 -1
  11. package/lib/components/button/IconButton.d.ts +6 -2
  12. package/lib/components/dynamic-form/DynamicForm.d.ts +11 -0
  13. package/lib/components/dynamic-form/DynamicForm.styles.d.ts +2 -0
  14. package/lib/components/dynamic-form/constants.d.ts +4 -0
  15. package/lib/components/dynamic-form/models.d.ts +68 -0
  16. package/lib/components/dynamic-form/sample.d.ts +4 -0
  17. package/lib/components/dynamic-form/utils/formHelpers.d.ts +34 -0
  18. package/lib/components/dynamic-form/utils/helpers.d.ts +5 -0
  19. package/lib/components/dynamic-form/utils/validation.d.ts +25 -0
  20. package/lib/components/form/Form.styles.d.ts +1 -1
  21. package/lib/components/icon/Icon.d.ts +4 -2
  22. package/lib/components/index.d.ts +46 -18
  23. package/lib/components/input-form-fields/InputText.d.ts +4 -1
  24. package/lib/components/json-schema-form/JsonSchemaForm.d.ts +21 -0
  25. package/lib/components/json-schema-form/JsonSchemaForm.styles.d.ts +2 -0
  26. package/lib/components/json-schema-form/custom-widgets/CustomCheckboxWidget.d.ts +3 -0
  27. package/lib/components/json-schema-form/custom-widgets/CustomCheckboxesWidget.d.ts +3 -0
  28. package/lib/components/json-schema-form/custom-widgets/CustomRadioWidget.d.ts +3 -0
  29. package/lib/components/json-schema-form/custom-widgets/CustomSelectWidget.d.ts +3 -0
  30. package/lib/components/json-schema-form/custom-widgets/CustomTextWidget.d.ts +3 -0
  31. package/lib/components/json-schema-form/custom-widgets/helpers.d.ts +10 -0
  32. package/lib/components/json-schema-form/custom-widgets/index.d.ts +5 -0
  33. package/lib/components/link/Link.d.ts +4 -2
  34. package/lib/components/list/List.d.ts +17 -5
  35. package/lib/components/list/List.styles.d.ts +1 -0
  36. package/lib/components/menu/Menu.d.ts +6 -1
  37. package/lib/components/menu/Menu.styles.d.ts +1 -0
  38. package/lib/components/progress/Progress.d.ts +4 -2
  39. package/lib/components/sidebar/Sidebar.d.ts +9 -1
  40. package/lib/components/split-button/SplitButton.d.ts +1 -1
  41. package/lib/components/split-button/SplitButton.styles.d.ts +1 -1
  42. package/lib/components/table/Table.stories.data.d.ts +14 -10
  43. package/lib/components/table/Table.styles.d.ts +1 -1
  44. package/lib/components/table/TableCell.d.ts +4 -3
  45. package/lib/components/table/TableRow.d.ts +5 -3
  46. package/lib/components/tooltip/Tooltip.d.ts +9 -0
  47. package/lib/theme-provider/colors/agility-dark-theme-colors.d.ts +9 -0
  48. package/lib/theme-provider/colors/agility-light-theme-colors.d.ts +11 -0
  49. package/lib/theme-provider/colors/light-theme-colors.d.ts +2 -1
  50. package/package.json +3 -2
package/README.md CHANGED
@@ -100,7 +100,7 @@ yarn upgrade @digital-ai/dot-components@latest
100
100
 
101
101
  Find which icon you would like to use by going to [.dot design system](https://zeroheight.com/4a9ac476a/p/13a447-icons/b/43c8ca)
102
102
 
103
- Follow the code example [shown here](https://storybook.lisbon-dev.com/?path=/docs/components-icon--default)
103
+ Follow the code example [shown here](https://digital-ai.github.io/dot-components/?path=/docs/components-icon--default)
104
104
 
105
105
  Note: You can use search in the upper right corner to search for an icon if you know its name.
106
106