@globalbrain/sefirot 0.72.0 → 2.0.0-draft.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 (174) hide show
  1. package/CHANGELOG.md +2 -820
  2. package/README.md +1 -1
  3. package/lib/assets/styles/bootstrap.css +1 -2
  4. package/lib/assets/styles/variables.css +14 -47
  5. package/lib/components/SAvatar.vue +9 -18
  6. package/lib/components/SButton.vue +35 -48
  7. package/lib/components/SDialog.vue +16 -34
  8. package/lib/components/SDropdown.vue +36 -55
  9. package/lib/components/SDropdownItem.vue +27 -39
  10. package/lib/components/SDropdownItemText.vue +4 -9
  11. package/lib/components/SDropdownItemUser.vue +4 -12
  12. package/lib/components/SInputBase.vue +33 -45
  13. package/lib/components/SInputCheckbox.vue +17 -37
  14. package/lib/components/SInputDropdown.vue +109 -171
  15. package/lib/components/SInputDropdownItem.vue +26 -32
  16. package/lib/components/SInputDropdownItemText.vue +6 -11
  17. package/lib/components/SInputDropdownItemTextTag.vue +10 -17
  18. package/lib/components/SInputDropdownItemUser.vue +5 -13
  19. package/lib/components/SInputDropdownItemUserTag.vue +9 -16
  20. package/lib/components/SInputFile.vue +38 -53
  21. package/lib/components/SInputHMS.vue +91 -114
  22. package/lib/components/SInputNumber.vue +27 -106
  23. package/lib/components/SInputRadio.vue +21 -34
  24. package/lib/components/SInputRadios.vue +36 -46
  25. package/lib/components/SInputText.vue +59 -633
  26. package/lib/components/SInputTextarea.vue +54 -113
  27. package/lib/components/SInputYMD.vue +94 -105
  28. package/lib/components/SLink.vue +16 -52
  29. package/lib/components/SModal.vue +53 -90
  30. package/lib/components/SPortalModals.vue +37 -53
  31. package/lib/components/SPortalSnackbars.vue +9 -24
  32. package/lib/components/SSheet.vue +10 -23
  33. package/lib/components/SSheetFooter.vue +0 -2
  34. package/lib/components/SSheetFooterAction.vue +9 -14
  35. package/lib/components/SSheetFooterActions.vue +1 -3
  36. package/lib/components/SSheetHeader.vue +9 -24
  37. package/lib/components/SSheetHeaderTitle.vue +0 -2
  38. package/lib/components/SSheetMedium.vue +12 -14
  39. package/lib/components/SSnackbar.vue +18 -28
  40. package/lib/composables/Dialog.ts +9 -17
  41. package/lib/composables/Dropdown.ts +1 -1
  42. package/lib/composables/{Menu.ts → Flyout.ts} +11 -4
  43. package/lib/composables/Form.ts +42 -44
  44. package/lib/composables/Modal.ts +9 -9
  45. package/lib/composables/Snackbar.ts +18 -0
  46. package/lib/composables/Validation.ts +28 -0
  47. package/lib/mixins/Sheet.ts +3 -3
  48. package/lib/store/Sefirot.ts +8 -13
  49. package/lib/store/dialog/index.ts +20 -10
  50. package/lib/store/modal/index.ts +11 -13
  51. package/lib/store/snackbars/index.ts +3 -4
  52. package/lib/support/{Util.ts → Utils.ts} +0 -2
  53. package/lib/types/Utils.ts +0 -7
  54. package/lib/types/vue-shims.d.ts +7 -0
  55. package/lib/validation/rules/checked.ts +6 -10
  56. package/lib/validation/rules/fileExtension.ts +9 -9
  57. package/lib/validation/rules/hms.ts +9 -9
  58. package/lib/validation/rules/index.ts +10 -74
  59. package/lib/validation/rules/maxLength.ts +10 -9
  60. package/lib/validation/rules/minLength.ts +12 -0
  61. package/lib/validation/rules/required.ts +2 -10
  62. package/lib/validation/rules/requiredHms.ts +11 -0
  63. package/lib/validation/rules/requiredIf.ts +3 -11
  64. package/lib/validation/rules/requiredYmd.ts +11 -0
  65. package/lib/validation/rules/ymd.ts +11 -0
  66. package/lib/validation/validators/checked.ts +1 -1
  67. package/lib/validation/validators/fileExtension.ts +1 -1
  68. package/lib/validation/validators/hms.ts +5 -5
  69. package/lib/validation/validators/requiredHms.ts +17 -0
  70. package/lib/validation/validators/requiredYmd.ts +7 -0
  71. package/lib/validation/validators/ymd.ts +41 -0
  72. package/package.json +45 -50
  73. package/lib/components/SAction.vue +0 -37
  74. package/lib/components/SActionAvatar.vue +0 -25
  75. package/lib/components/SActionButton.vue +0 -40
  76. package/lib/components/SActionPill.vue +0 -35
  77. package/lib/components/SActionSwitch.vue +0 -37
  78. package/lib/components/SAlert.vue +0 -145
  79. package/lib/components/SButtonGroup.vue +0 -160
  80. package/lib/components/SCard.vue +0 -111
  81. package/lib/components/SCardFooter.vue +0 -74
  82. package/lib/components/SCardHeader.vue +0 -213
  83. package/lib/components/SGrid.vue +0 -237
  84. package/lib/components/SGridActionLink.vue +0 -53
  85. package/lib/components/SGridActionMulti.vue +0 -139
  86. package/lib/components/SGridActionSingle.vue +0 -64
  87. package/lib/components/SHeader.vue +0 -180
  88. package/lib/components/SInputCheckboxes.vue +0 -87
  89. package/lib/components/SInputDate.vue +0 -192
  90. package/lib/components/SInputDay.vue +0 -87
  91. package/lib/components/SInputMonth.vue +0 -86
  92. package/lib/components/SInputSelect.vue +0 -298
  93. package/lib/components/SInputSwitch.vue +0 -212
  94. package/lib/components/SInputSwitches.vue +0 -108
  95. package/lib/components/SInputTime.vue +0 -255
  96. package/lib/components/SInputYear.vue +0 -60
  97. package/lib/components/SMarkdown.vue +0 -56
  98. package/lib/components/SPlaceholderBlank.vue +0 -113
  99. package/lib/components/SPlaceholderImage.vue +0 -83
  100. package/lib/components/SPortalScreens.vue +0 -62
  101. package/lib/components/SProgressBar.vue +0 -89
  102. package/lib/components/SResponsive.vue +0 -46
  103. package/lib/components/SScreen.vue +0 -81
  104. package/lib/components/SStep.vue +0 -107
  105. package/lib/components/SSteps.vue +0 -75
  106. package/lib/components/STag.vue +0 -67
  107. package/lib/components/STooltip.vue +0 -134
  108. package/lib/components/SWindow.vue +0 -158
  109. package/lib/components/icons/SIconCopy.vue +0 -6
  110. package/lib/composables/Action.ts +0 -141
  111. package/lib/composables/Alert.ts +0 -50
  112. package/lib/composables/Card.ts +0 -46
  113. package/lib/composables/FormValidation.ts +0 -150
  114. package/lib/composables/Header.ts +0 -72
  115. package/lib/composables/InputDropdown.ts +0 -6
  116. package/lib/composables/Markdown.ts +0 -138
  117. package/lib/composables/Router.ts +0 -20
  118. package/lib/composables/Step.ts +0 -7
  119. package/lib/composables/Store.ts +0 -9
  120. package/lib/composables/Tag.ts +0 -32
  121. package/lib/composables/Tooltip.ts +0 -91
  122. package/lib/composables/Utils.ts +0 -115
  123. package/lib/composables/markdown/LinkPlugin.ts +0 -45
  124. package/lib/compositions/useForm.ts +0 -17
  125. package/lib/compositions/useResizeObserver.ts +0 -25
  126. package/lib/compositions/useTime.ts +0 -26
  127. package/lib/store/alert/index.ts +0 -32
  128. package/lib/store/screen/index.ts +0 -46
  129. package/lib/types/v-calendar.d.ts +0 -5
  130. package/lib/validation/Validation.ts +0 -151
  131. package/lib/validation/rules/day.ts +0 -11
  132. package/lib/validation/rules/email.ts +0 -11
  133. package/lib/validation/rules/every.ts +0 -38
  134. package/lib/validation/rules/include.ts +0 -11
  135. package/lib/validation/rules/includeSome.ts +0 -11
  136. package/lib/validation/rules/integer.ts +0 -11
  137. package/lib/validation/rules/maxValue.ts +0 -11
  138. package/lib/validation/rules/minValue.ts +0 -11
  139. package/lib/validation/rules/month.ts +0 -11
  140. package/lib/validation/rules/not.ts +0 -10
  141. package/lib/validation/rules/regex.ts +0 -11
  142. package/lib/validation/rules/requiredHMS.ts +0 -11
  143. package/lib/validation/rules/requiredMonthDate.ts +0 -11
  144. package/lib/validation/rules/requiredYearMonth.ts +0 -11
  145. package/lib/validation/rules/requiredYearMonthDate.ts +0 -11
  146. package/lib/validation/rules/rule.ts +0 -5
  147. package/lib/validation/rules/sameAs.ts +0 -11
  148. package/lib/validation/rules/url.ts +0 -11
  149. package/lib/validation/rules/validateIf.ts +0 -27
  150. package/lib/validation/rules/year.ts +0 -11
  151. package/lib/validation/rules/yearMonth.ts +0 -11
  152. package/lib/validation/rules/yearMonthDate.ts +0 -11
  153. package/lib/validation/validators/day.ts +0 -29
  154. package/lib/validation/validators/email.ts +0 -5
  155. package/lib/validation/validators/include.ts +0 -5
  156. package/lib/validation/validators/includeSome.ts +0 -5
  157. package/lib/validation/validators/index.ts +0 -51
  158. package/lib/validation/validators/integer.ts +0 -6
  159. package/lib/validation/validators/maxLength.ts +0 -3
  160. package/lib/validation/validators/maxValue.ts +0 -3
  161. package/lib/validation/validators/minValue.ts +0 -3
  162. package/lib/validation/validators/month.ts +0 -3
  163. package/lib/validation/validators/monthDate.ts +0 -20
  164. package/lib/validation/validators/regex.ts +0 -3
  165. package/lib/validation/validators/required.ts +0 -27
  166. package/lib/validation/validators/requiredHMS.ts +0 -17
  167. package/lib/validation/validators/requiredMonthDate.ts +0 -8
  168. package/lib/validation/validators/requiredYearMonth.ts +0 -8
  169. package/lib/validation/validators/requiredYearMonthDate.ts +0 -9
  170. package/lib/validation/validators/sameAs.ts +0 -5
  171. package/lib/validation/validators/url.ts +0 -5
  172. package/lib/validation/validators/year.ts +0 -3
  173. package/lib/validation/validators/yearMonth.ts +0 -20
  174. package/lib/validation/validators/yearMonthDate.ts +0 -21
package/CHANGELOG.md CHANGED
@@ -1,821 +1,3 @@
1
- # [0.72.0](https://github.com/globalbrain/sefirot/compare/v0.71.0...v0.72.0) (2021-12-01)
2
-
3
- ### Features
4
-
5
- * **icon:** add `copy` icon ([#109](https://github.com/globalbrain/sefirot/issues/109)) ([a5dfd72](https://github.com/globalbrain/sefirot/commit/a5dfd726691baecc454efb7b14c9b0028305577b))
6
- * **input-select:** add `small` size and `nullable` option ([b416612](https://github.com/globalbrain/sefirot/commit/b416612e8c2881920499dc36deb7f7c2b74d9bd3))
7
- * **input-checkbox:** add size option to input checkbox ([cfddd90](https://github.com/globalbrain/sefirot/commit/cfddd9003685a4b4984f69bafaead92bc84219e3))
8
-
9
- # [0.71.0](https://github.com/globalbrain/sefirot/compare/v0.70.1...v0.71.0) (2021-11-18)
10
-
11
- ### Features
12
-
13
- * **icon:** add `send` icon ([683a57a](https://github.com/globalbrain/sefirot/commit/683a57ad712952b1de122c35a8113cf8f1a738ee))
14
-
15
- ## [0.70.1](https://github.com/globalbrain/sefirot/compare/v0.70.0...v0.70.1) (2021-11-17)
16
-
17
- ### Bug Fixes
18
-
19
- * **input-text:** fix long text getting wrapped inside display value ([19f3ccd](https://github.com/globalbrain/sefirot/commit/19f3ccdf78600a28cd16f970319c46c44100fc26))
20
-
21
- # [0.70.0](https://github.com/globalbrain/sefirot/compare/v0.69.0...v0.70.0) (2021-11-17)
22
-
23
- ### Bug Fixes
24
-
25
- * **link:** remove unexpected trailing white space ([9e5592c](https://github.com/globalbrain/sefirot/commit/9e5592c33e111834229fa2e7c95a4f44284088f8))
26
-
27
- ### Features
28
-
29
- * **input-text:** make small and outlined style as default and fix small styling issues ([2ba7691](https://github.com/globalbrain/sefirot/commit/2ba76916e9ab8a2df2002686695e63fea9bcdd35))
30
- * **input-select:** add error-message option for select input ([#108](https://github.com/globalbrain/sefirot/issues/108)) ([b949136](https://github.com/globalbrain/sefirot/commit/b949136bd0df6cc041ace47a7e16c31e2985ffbe))
31
- * **input-checkbox:** improve styling and add validation support ([1da8bf1](https://github.com/globalbrain/sefirot/commit/1da8bf163260ecde620e7e485f9b1b2bcda71a2c))
32
- * **input-file:** add SInputFile component ([#107](https://github.com/globalbrain/sefirot/issues/107)) ([03eb6bb](https://github.com/globalbrain/sefirot/commit/03eb6bbcbba94e6c31693406c41efd402f23c4aa))
33
- * **validation:** add "checked" rule ([a24c3ba](https://github.com/globalbrain/sefirot/commit/a24c3ba6186fa6ac2c6cf3b361301c5a6a8a62ee))
34
-
35
- # [0.69.0](https://github.com/globalbrain/sefirot/compare/v0.68.0...v0.69.0) (2021-10-28)
36
-
37
- ### Bug Fixes
38
-
39
- * **input-text:** run color callback for computing initial color ([#105](https://github.com/globalbrain/sefirot/issues/105)) ([b798a5e](https://github.com/globalbrain/sefirot/commit/b798a5e2298234dc392fcdb0a5e351e518c3fb50))
40
- * **input-radios:** add missing `size` prop ([4fb87a4](https://github.com/globalbrain/sefirot/commit/4fb87a4c5c7ec8ae43c74b8e2a56d093c56b6019))
41
-
42
- ### Features
43
-
44
- * **input-dropdown:** add dark mode and `small` size support ([4551666](https://github.com/globalbrain/sefirot/commit/455166671f8e0f2c16cf0d43ea98cc5b5c38e674))
45
- * **input-ymd:** add `small` and `medium` size ([0678293](https://github.com/globalbrain/sefirot/commit/06782932fcdbf812a839ae48e8e8e38ae2dd815c))
46
- * **input-hms:** add SinputHMS component ([#13](https://github.com/globalbrain/sefirot/issues/13)) ([#106](https://github.com/globalbrain/sefirot/issues/106)) ([b83f7fb](https://github.com/globalbrain/sefirot/commit/b83f7fb9b805c8d2c34a107ffb006865f9a52d24))
47
-
48
- # [0.68.0](https://github.com/globalbrain/sefirot/compare/v0.67.0...v0.68.0) (2021-10-25)
49
-
50
- ### Bug Fixes
51
-
52
- * **modal:** fix open method not working correctly ([23d8321](https://github.com/globalbrain/sefirot/commit/23d832198dbb23df225bcd89c69f6b30e5d2ea47))
53
- * **modal:** interface type ([289f6f1](https://github.com/globalbrain/sefirot/commit/289f6f1ea912d0c603e0fecde1ee1a1ae495b4bd))
54
- * **tooltip:** set timeout when it hides tooltip ([#104](https://github.com/globalbrain/sefirot/issues/104)) ([b07df61](https://github.com/globalbrain/sefirot/commit/b07df61a322388634a8584d6186e62e76249a49f))
55
-
56
- ### Features
57
-
58
- * **button:** add dark mode support ([ed5129d](https://github.com/globalbrain/sefirot/commit/ed5129d354099a142b0972ed202eb7944842e716))
59
- * **icon:** add 'more-vertical' and 'grab' icons ([#102](https://github.com/globalbrain/sefirot/issues/102)) ([facba32](https://github.com/globalbrain/sefirot/commit/facba32ee670620c0da67166901ba2c51b001b93))
60
- * **input-radio:** add dark mode support ([f2bcea7](https://github.com/globalbrain/sefirot/commit/f2bcea7d9e4f21c96c7701133c70407c866a050c))
61
- * **input-text:** add alignment option for text input and number input ([#103](https://github.com/globalbrain/sefirot/issues/103)) ([07ccfd1](https://github.com/globalbrain/sefirot/commit/07ccfd11f72c9eeff8db2feee422734ca01864df))
62
- * **input-text:** add small size and dark mode support ([14a2b10](https://github.com/globalbrain/sefirot/commit/14a2b10e6fdc98f70b80b289a46fcfa1c39d9336))
63
- * **input-textarea:** add dark mode support ([d124ab4](https://github.com/globalbrain/sefirot/commit/d124ab4f0ba3307cbad3ec407dfaaa0cdbb48ecc))
64
- * **modal:** accept component in useModal argument ([5be1176](https://github.com/globalbrain/sefirot/commit/5be1176a0618e8bd156f7719ed3dc19b68f022d1))
65
- * **modal:** close modal when clicking on content area ([afcd5c7](https://github.com/globalbrain/sefirot/commit/afcd5c7d6f34a329147889d205a784c941ad6eff))
66
- * **sheet:** add SSheet component ([f98c204](https://github.com/globalbrain/sefirot/commit/f98c2046e57a47c05f174a2313ae39300a78823d))
67
-
68
- # [0.67.0](https://github.com/globalbrain/sefirot/compare/v0.66.0...v0.67.0) (2021-09-23)
69
-
70
- ### Bug Fixes
71
-
72
- * **input-number:** fix `0` value not showing correctly ([c90a6ab](https://github.com/globalbrain/sefirot/commit/c90a6abc51060dabedce25b2f4ada6d315668077))
73
-
74
- ### Features
75
-
76
- * **icon:** add more icons ([6463401](https://github.com/globalbrain/sefirot/commit/646340107d8d5bedd3b3ffcbb861d2c1de80a919))
77
- * **input:** add error message option to inputs ([db7d5d6](https://github.com/globalbrain/sefirot/commit/db7d5d6df1c24f4cd4be5a1e184ebda87326d58c))
78
- * **input-text:** add `color` prop to input text and number ([#99](https://github.com/globalbrain/sefirot/issues/99)) ([f8ff9a2](https://github.com/globalbrain/sefirot/commit/f8ff9a2e00bcfc2ea2f6c704d337a425b83caa11))
79
- * **input-number:** add option to show separator when focus is out ([#97](https://github.com/globalbrain/sefirot/issues/97)) ([5db99c8](https://github.com/globalbrain/sefirot/commit/5db99c85bea471256f1eb6884052f8a2741ec4eb))
80
- * **input-textarea:** add `small` size ([645f446](https://github.com/globalbrain/sefirot/commit/645f4460ea461d4cb03be9da01768051fcb0ae5a))
81
- * **input-ymd:** add YMD input component ([648c496](https://github.com/globalbrain/sefirot/commit/648c496482a5561497488a6442c902fbb4cffce9))
82
- * **dialog:** add dark mode support ([9fb8276](https://github.com/globalbrain/sefirot/commit/9fb827684e0dda6743df33635ca54392d43df804))
83
- * **snackbar:** add dark mode support ([03180c7](https://github.com/globalbrain/sefirot/commit/03180c7ffeb8d8f69f75558ea8415e37a3a93262))
84
-
85
- # [0.66.0](https://github.com/globalbrain/sefirot/compare/v0.65.1...v0.66.0) (2021-09-17)
86
-
87
- ### Features
88
-
89
- * **validation:** add `every` rule ([4b3ddec](https://github.com/globalbrain/sefirot/commit/4b3ddec79b8fc570a76ae62f5b0f5eaffe0c499c))
90
-
91
- ## [0.65.1](https://github.com/globalbrain/sefirot/compare/v0.65.0...v0.65.1) (2021-09-13)
92
-
93
- ### Bug Fixes
94
-
95
- * **button-group:** the height of each button groups is incorrect ([#96](https://github.com/globalbrain/sefirot/issues/96)) ([1303925](https://github.com/globalbrain/sefirot/commit/1303925d255df6c34d26a129d9ebc3d7145804ac))
96
-
97
- # [0.65.0](https://github.com/globalbrain/sefirot/compare/v0.64.0...v0.65.0) (2021-08-18)
98
-
99
- ### Features
100
-
101
- * **button:** add disabled option ([879bc1b](https://github.com/globalbrain/sefirot/commit/879bc1b6f5c7eaf717bd1562b3b13dce5570f590))
102
-
103
- # [0.64.0](https://github.com/globalbrain/sefirot/compare/v0.63.0...v0.64.0) (2021-08-18)
104
-
105
- ### Features
106
-
107
- * **button:** add mode support for secondary type button ([69ad6f3](https://github.com/globalbrain/sefirot/commit/69ad6f32324218096006098329c33f8f5849a563))
108
- * **button-group:** implement button group component ([#94](https://github.com/globalbrain/sefirot/issues/94)) ([218dd1a](https://github.com/globalbrain/sefirot/commit/218dd1a214f568ec4817f1ee93fd9010bf7be7b3))
109
-
110
- # [0.63.0](https://github.com/globalbrain/sefirot/compare/v0.62.1...v0.63.0) (2021-07-21)
111
-
112
- ### Features
113
-
114
- * **card:** show footer only when there is at least one action ([#93](https://github.com/globalbrain/sefirot/issues/93)) ([6a418b1](https://github.com/globalbrain/sefirot/commit/6a418b133afd439ee3ca95d50824e88ef6ae13a3))
115
-
116
- ## [0.62.1](https://github.com/globalbrain/sefirot/compare/v0.62.0...v0.62.1) (2021-07-14)
117
-
118
- ### Bug Fixes
119
-
120
- * **input-number:** do not round decimals on help format text ([#92](https://github.com/globalbrain/sefirot/issues/92)) ([1b87f13](https://github.com/globalbrain/sefirot/commit/1b87f135ec755377e60322c5eef7e46b32b2b5dc))
121
-
122
- # [0.62.0](https://github.com/globalbrain/sefirot/compare/v0.61.0...v0.62.0) (2021-07-12)
123
-
124
- ### Features
125
-
126
- * **tooltip:** add z-index for SToolTip ([#90](https://github.com/globalbrain/sefirot/issues/90)) ([ebb1abf](https://github.com/globalbrain/sefirot/commit/ebb1abf6521c532c08b2b88903884b93a7d2d734))
127
-
128
- # [0.61.0](https://github.com/globalbrain/sefirot/compare/v0.60.0...v0.61.0) (2021-07-01)
129
-
130
- ### Features
131
-
132
- * **validation:** add minValue validation ([#89](https://github.com/globalbrain/sefirot/issues/89)) ([014d2fc](https://github.com/globalbrain/sefirot/commit/014d2fc3f8da7b5edb3384b293a0a29aad3d8348))
133
-
134
- # [0.60.0](https://github.com/globalbrain/sefirot/compare/v0.59.0...v0.60.0) (2021-06-25)
135
-
136
- ### Features
137
-
138
- * **card:** make card header's actions prop refish ([#88](https://github.com/globalbrain/sefirot/issues/88)) ([b06166e](https://github.com/globalbrain/sefirot/commit/b06166e7c165db4ab7e4f77ef815c8fd2c75ef30))
139
-
140
- # [0.59.0](https://github.com/globalbrain/sefirot/compare/v0.58.0...v0.59.0) (2021-06-23)
141
-
142
- ### Features
143
-
144
- * **input-switch:** adds disabled option ([#87](https://github.com/globalbrain/sefirot/issues/87)) ([0aeecaa](https://github.com/globalbrain/sefirot/commit/0aeecaa58e5ff2e1b9f37e148b121db9c2a32718))
145
- * **input-year:** add disabled option for input-year ([#86](https://github.com/globalbrain/sefirot/issues/86)) ([2f41bd9](https://github.com/globalbrain/sefirot/commit/2f41bd9f800b7692a5d649fee7074b2c33272f75))
146
- * **icon:** add more icons ([161ee81](https://github.com/globalbrain/sefirot/commit/161ee8194317fdde85a8992b548669966455944c))
147
- * **style:** add black deep color ([9d28685](https://github.com/globalbrain/sefirot/commit/9d286855d4f6e876b82073dd3f91a1eda69cfed8))
148
-
149
- # [0.58.0](https://github.com/globalbrain/sefirot/compare/v0.57.0...v0.58.0) (2021-06-18)
150
-
151
- ### Bug Fixes
152
-
153
- * **card:** make button un-clickable if disabled ([#84](https://github.com/globalbrain/sefirot/issues/84)) ([e98f643](https://github.com/globalbrain/sefirot/commit/e98f643c2331b8da934791b1f0249f55851d8a19))
154
-
155
- ### Features
156
-
157
- * **icon:** add database icon ([6c378c2](https://github.com/globalbrain/sefirot/commit/6c378c235503771d5f118d4c79bea3eac8ea67ab))
158
- * **tooltip:** add markdown support ([#85](https://github.com/globalbrain/sefirot/issues/85)) ([d913508](https://github.com/globalbrain/sefirot/commit/d9135083468a224d7424d9c05e0c022f3d3c6a43))
159
-
160
- # [0.57.0](https://github.com/globalbrain/sefirot/compare/v0.56.1...v0.57.0) (2021-06-17)
161
-
162
- ### Features
163
-
164
- * **icon:** add layout and zap icon ([d365f72](https://github.com/globalbrain/sefirot/commit/d365f729f15dedc7dec69f3eda7b4a58ffdf8fa2))
165
- * add disabled option for select and dropdown options ([#82](https://github.com/globalbrain/sefirot/issues/82)) ([d86fb01](https://github.com/globalbrain/sefirot/commit/d86fb01eb94d27caf7d4ba8b1fe874b0342b6d6b))
166
-
167
- ## [0.56.1](https://github.com/globalbrain/sefirot/compare/v0.56.0...v0.56.1) (2021-06-10)
168
-
169
- ### Bug Fixes
170
-
171
- * **input-year:** emit number only ([#79](https://github.com/globalbrain/sefirot/issues/79)) ([#80](https://github.com/globalbrain/sefirot/issues/80)) ([206496d](https://github.com/globalbrain/sefirot/commit/206496d5d7c34e748118e9173a38373547482710))
172
-
173
- # [0.56.0](https://github.com/globalbrain/sefirot/compare/v0.55.0...v0.56.0) (2021-06-07)
174
-
175
- ### Features
176
-
177
- * **card-header:** add disabled option for header action ([#77](https://github.com/globalbrain/sefirot/issues/77)) ([be2be24](https://github.com/globalbrain/sefirot/commit/be2be24ff484ed7d8aa75685ce34697cfb1b2e95))
178
- * **validation:** add integer rule ([57d7463](https://github.com/globalbrain/sefirot/commit/57d7463702a9cda7e5a60dff4756e393dbeaf4c8))
179
- * **validation:** add validateIf rule ([61d958f](https://github.com/globalbrain/sefirot/commit/61d958fbc3f073f489ba57b89b2a79b2ce58655a))
180
-
181
-
182
- # [0.55.0](https://github.com/globalbrain/sefirot/compare/v0.54.0...v0.55.0) (2021-05-24)
183
-
184
- ### Features
185
-
186
- * **card:** accept ref value for the footer actions ([9c2df3e](https://github.com/globalbrain/sefirot/commit/9c2df3ea0b970a5734d84838dee5773eb5884d3f))
187
- * **input-dropdown:** add "disabled" option ([8a041d7](https://github.com/globalbrain/sefirot/commit/8a041d7520007c0070bdfb3ce3d7db5d067516fa))
188
- * **input-month:** add "disabled" option ([749f14a](https://github.com/globalbrain/sefirot/commit/749f14a7526c5549d8584ebe4abbaa080173c8db))
189
-
190
- # [0.54.0](https://github.com/globalbrain/sefirot/compare/v0.53.1...v0.54.0) (2021-05-24)
191
-
192
- ### Bug Fixes
193
-
194
- * **modal:** handle active state timer ([#74](https://github.com/globalbrain/sefirot/issues/74)) ([#75](https://github.com/globalbrain/sefirot/issues/75)) ([9767b21](https://github.com/globalbrain/sefirot/commit/9767b216fe09dccbdfe2f6f06b6c1defb2248e82))
195
-
196
- ### Features
197
-
198
- * add disable props to more input components ([#73](https://github.com/globalbrain/sefirot/issues/73)) ([438699e](https://github.com/globalbrain/sefirot/commit/438699e0bafff86fd596a3fab1e942a072920a8c))
199
-
200
- ## [0.53.1](https://github.com/globalbrain/sefirot/compare/v0.53.0...v0.53.1) (2021-05-13)
201
-
202
- ### Bug Fixes
203
-
204
- * **input-text:** clearable & disabled should not conflict ([#70](https://github.com/globalbrain/sefirot/issues/70)) ([#71](https://github.com/globalbrain/sefirot/issues/71)) ([bf6fd4e](https://github.com/globalbrain/sefirot/commit/bf6fd4e5f074354f942179a1881af18c5c52f9d5))
205
- * **utils:** return shallow ref from computed utils ([#72](https://github.com/globalbrain/sefirot/issues/72)) ([cbd60c9](https://github.com/globalbrain/sefirot/commit/cbd60c983df823b5a7f0af8ff303e7037f570cb1))
206
-
207
- # [0.53.0](https://github.com/globalbrain/sefirot/compare/v0.52.0...v0.53.0) (2021-05-11)
208
-
209
- ### Bug Fixes
210
-
211
- * **input-date:** add z-index for popover of input-date ([#68](https://github.com/globalbrain/sefirot/issues/68)) ([09fbe6d](https://github.com/globalbrain/sefirot/commit/09fbe6d7bd95992818c36d82e0f8434f221a5914))
212
- * **support:** improve `Time.delay` typing ([c90a305](https://github.com/globalbrain/sefirot/commit/c90a3056ec86588208f34255b0fbea7aa2d1ab09))
213
-
214
- ### Features
215
-
216
- * **input-number:** add action prop support ([3fe9a70](https://github.com/globalbrain/sefirot/commit/3fe9a70af808cea7e5e0033685474bb47ddd57bd))
217
- * **input-text:** add `disabled` feature ([#69](https://github.com/globalbrain/sefirot/issues/69)) ([8071b33](https://github.com/globalbrain/sefirot/commit/8071b337cf4584bf54c6306f20b4b4d0cd17b98b))
218
-
219
- # [0.52.0](https://github.com/globalbrain/sefirot/compare/v0.51.0...v0.52.0) (2021-05-07)
220
-
221
- ### Features
222
-
223
- * **modal:** explicit modal toggling ([#66](https://github.com/globalbrain/sefirot/issues/66)) ([#67](https://github.com/globalbrain/sefirot/issues/67)) ([5a07160](https://github.com/globalbrain/sefirot/commit/5a07160824a7fcf51cd2dc41063afe0fd88595dd))
224
- * add tabindex to SInputSelent and SInputDropdown ([#65](https://github.com/globalbrain/sefirot/issues/65)) ([027f71c](https://github.com/globalbrain/sefirot/commit/027f71c89ba15fd488f410c7aec8319a03fc03f1))
225
-
226
- # [0.51.0](https://github.com/globalbrain/sefirot/compare/v0.50.0...v0.51.0) (2021-04-26)
227
-
228
- ### Features
229
-
230
- * **modal:** update how modal works ([#64](https://github.com/globalbrain/sefirot/issues/64)) ([6b23406](https://github.com/globalbrain/sefirot/commit/6b234068c1cfeb8ba1868122cfbb894a4eafc112))
231
-
232
- # [0.50.0](https://github.com/globalbrain/sefirot/compare/v0.49.0...v0.50.0) (2021-04-15)
233
-
234
- ### Features
235
-
236
- * refactor bunch of stuff ([#58](https://github.com/globalbrain/sefirot/issues/58)) ([fc86f9a](https://github.com/globalbrain/sefirot/commit/fc86f9ab6a8c6d2e8a5c997aeaab3bb6000eea9f))
237
-
238
- # [0.49.0](https://github.com/globalbrain/sefirot/compare/v0.48.0...v0.49.0) (2021-04-12)
239
-
240
- ### Features
241
-
242
- * add markdown component ([#57](https://github.com/globalbrain/sefirot/issues/57)) ([daba5b3](https://github.com/globalbrain/sefirot/commit/daba5b3b564fe4d56aeafd9e280336b9bf6a642e))
243
- * **form:** narrow form validation type ([#56](https://github.com/globalbrain/sefirot/issues/56)) ([32f918b](https://github.com/globalbrain/sefirot/commit/32f918b185e8d0a071506537264dc610b44391a7))
244
-
245
- # [0.48.0](https://github.com/globalbrain/sefirot/compare/v0.47.0...v0.48.0) (2021-04-08)
246
-
247
- ### Features
248
-
249
- * **step:** add SSteps component ([#55](https://github.com/globalbrain/sefirot/issues/55)) ([048f229](https://github.com/globalbrain/sefirot/commit/048f229fe839c14243715f1a58df330c5722d463))
250
-
251
- # [0.47.0](https://github.com/globalbrain/sefirot/compare/v0.46.0...v0.47.0) (2021-04-05)
252
-
253
- ### Features
254
-
255
- * **form:** update form apis ([#54](https://github.com/globalbrain/sefirot/issues/54)) ([0497a1a](https://github.com/globalbrain/sefirot/commit/0497a1ad0440986bdf2043e9a4f5f4ae9857e920))
256
-
257
- # [0.46.0](https://github.com/globalbrain/sefirot/compare/v0.45.0...v0.46.0) (2021-03-26)
258
-
259
- ### Bug Fixes
260
-
261
- * **input-date:** add missing placeholer props to SInputDate ([#49](https://github.com/globalbrain/sefirot/issues/49)) ([29a88d4](https://github.com/globalbrain/sefirot/commit/29a88d4db56f2c3b27cf31281483a58fb0f850de))
262
- * **input-date:** weird bottom space on when size is set to mini ([#50](https://github.com/globalbrain/sefirot/issues/50)) ([ea10130](https://github.com/globalbrain/sefirot/commit/ea1013054b197de51f1b88cb593d0761352c5757))
263
-
264
- ### Features
265
-
266
- * **input-number:** add 'step' props ([#51](https://github.com/globalbrain/sefirot/issues/51)) ([a7ffeca](https://github.com/globalbrain/sefirot/commit/a7ffeca3b48ceb6de27b48afd732a5dad32dafcb))
267
- * **validation:** implement includeSome ([#53](https://github.com/globalbrain/sefirot/issues/53)) ([0699104](https://github.com/globalbrain/sefirot/commit/06991042f9086f203d4e2cb0ecfc728ffaad73d5))
268
-
269
- # [0.45.0](https://github.com/globalbrain/sefirot/compare/v0.44.0...v0.45.0) (2021-03-16)
270
-
271
- ### Features
272
-
273
- * **alert:** improve composition ([#47](https://github.com/globalbrain/sefirot/issues/47)) ([#48](https://github.com/globalbrain/sefirot/issues/48)) ([8961c67](https://github.com/globalbrain/sefirot/commit/8961c67c3012ac741d25759d8dd07b826d2ecaea))
274
-
275
- # [0.44.0](https://github.com/globalbrain/sefirot/compare/v0.43.0...v0.44.0) (2021-03-15)
276
-
277
- ### Features
278
-
279
- * **alert:** add composable ([#43](https://github.com/globalbrain/sefirot/issues/43)) ([4c17e94](https://github.com/globalbrain/sefirot/commit/4c17e940d6045a2ee9e4ba02ad85ad68b1b55c0b))
280
- * **card:** remove module option from card ([f83de4e](https://github.com/globalbrain/sefirot/commit/f83de4e23e0f1c04824866f4b479ee4804c46a0b))
281
-
282
- # [0.43.0](https://github.com/globalbrain/sefirot/compare/v0.42.0...v0.43.0) (2021-03-01)
283
-
284
- ### Features
285
-
286
- * add ability to take callback in `computedIfOnly` helper function ([82cb14d](https://github.com/globalbrain/sefirot/commit/82cb14df6c2225246345b794b7f22b3724c01300))
287
-
288
- # [0.42.0](https://github.com/globalbrain/sefirot/compare/v0.41.0...v0.42.0) (2021-02-26)
289
-
290
- ### Features
291
-
292
- * typescript remediation, few new features and bug fixes ([#42](https://github.com/globalbrain/sefirot/issues/42)) ([4aa4e4c](https://github.com/globalbrain/sefirot/commit/4aa4e4c9e607d3f800cebc9512e8a1428a08bd69))
293
-
294
- # [0.41.0](https://github.com/globalbrain/sefirot/compare/v0.40.0...v0.41.0) (2021-02-25)
295
-
296
- ### Features
297
-
298
- * **input-switch:** add `textAfter` option ([a1134e0](https://github.com/globalbrain/sefirot/commit/a1134e088ab73df4b82f786dca95ffb579cef93e))
299
-
300
- # [0.40.0](https://github.com/globalbrain/sefirot/compare/v0.39.0...v0.40.0) (2021-02-25)
301
-
302
- ### BREAKING CHANGES
303
-
304
- * **build:** composition-api plugin is updated. It contains breaking change
305
- so that the it must be updated to the latest version.
306
-
307
- ### Features
308
-
309
- * **build:** update npm packages ([b7dc1d0](https://github.com/globalbrain/sefirot/commit/b7dc1d06f605de6dc67c02621673a48adcc7903d))
310
-
311
- # [0.39.0](https://github.com/globalbrain/sefirot/compare/v0.38.1...v0.39.0) (2021-02-17)
312
-
313
- ### Features
314
-
315
- * **support:** expose `orderBy` and `groupBy` functions ([88019c5](https://github.com/globalbrain/sefirot/commit/88019c5f70c9427fd2d67b2c2671fc212e49129a))
316
-
317
- ## [0.38.1](https://github.com/globalbrain/sefirot/compare/v0.38.0...v0.38.1) (2021-02-17)
318
-
319
- ### Bug Fixes
320
-
321
- * **header:** take `name` property in account ([63d466d](https://github.com/globalbrain/sefirot/commit/63d466d979f16a4726b4b9ce501a3d7fc1a99269))
322
-
323
- # [0.38.0](https://github.com/globalbrain/sefirot/compare/v0.37.0...v0.38.0) (2021-02-17)
324
-
325
- ### Features
326
-
327
- * **icon:** add 3 new icons ([422abac](https://github.com/globalbrain/sefirot/commit/422abac07635839ed2c18c271f35b2f0f395ad87))
328
-
329
- # [0.37.0](https://github.com/globalbrain/sefirot/compare/v0.36.0...v0.37.0) (2021-02-15)
330
-
331
- ### Features
332
-
333
- * add SActionSwitch component ([#41](https://github.com/globalbrain/sefirot/issues/41)) ([2484a88](https://github.com/globalbrain/sefirot/commit/2484a884235c783c56e04f3b883be7a6c297ff96))
334
-
335
- # [0.36.0](https://github.com/globalbrain/sefirot/compare/v0.35.0...v0.36.0) (2021-02-05)
336
-
337
- ### Features
338
-
339
- * **input-number:** add input number component ([#40](https://github.com/globalbrain/sefirot/issues/40)) ([8c099bc](https://github.com/globalbrain/sefirot/commit/8c099bcd442c7678153ea577e061553ee1fcf411))
340
- * **validation:** add `requiredIf` rule ([#39](https://github.com/globalbrain/sefirot/issues/39)) ([763deba](https://github.com/globalbrain/sefirot/commit/763deba4bed8703f0f3322b095a8419327f4eb85))
341
- * **validation:** enable passing validation object as a rule ([32ed709](https://github.com/globalbrain/sefirot/commit/32ed709afad1cc9740a0e4feba632179aef6fafe))
342
- * add `computedArray` composable utility function ([45d71cb](https://github.com/globalbrain/sefirot/commit/45d71cb559b510c68ec60b6a3a98b6688a276346))
343
-
344
- # [0.35.0](https://github.com/globalbrain/sefirot/compare/v0.34.2...v0.35.0) (2021-02-03)
345
-
346
- ### Bug Fixes
347
-
348
- * set initial value when refish is not empty in `computedIfOnly` ([aeab953](https://github.com/globalbrain/sefirot/commit/aeab953686d50ccefdef4173ce974914a28f2bcc))
349
-
350
- ### Features
351
-
352
- * **validation:** add max length validation rule ([#34](https://github.com/globalbrain/sefirot/issues/34)) ([#37](https://github.com/globalbrain/sefirot/issues/37)) ([7a3643b](https://github.com/globalbrain/sefirot/commit/7a3643b99d7a0eb3f83bdfcedf9c9e8d01919fe0))
353
- * **validation:** add max value validation rule ([#35](https://github.com/globalbrain/sefirot/issues/35)) ([#36](https://github.com/globalbrain/sefirot/issues/36)) ([84aef8f](https://github.com/globalbrain/sefirot/commit/84aef8fdeccb6bac4fba3b89bbd7bff42ca393c0))
354
-
355
- ## [0.34.2](https://github.com/globalbrain/sefirot/compare/v0.34.1...v0.34.2) (2021-02-01)
356
-
357
- ### Bug Fixes
358
-
359
- * **modal:** do not close modal when descendant element is clicked ([0cf5bd8](https://github.com/globalbrain/sefirot/commit/0cf5bd8d7a0b5b1a317af69291f53f706964fe54))
360
-
361
- ## [0.34.1](https://github.com/globalbrain/sefirot/compare/v0.34.0...v0.34.1) (2021-01-28)
362
-
363
- ### Bug Fixes
364
-
365
- * **input-date:** selection not reactive to the input field ([7743fa0](https://github.com/globalbrain/sefirot/commit/7743fa08dc2b4a7b4a51de895902084611ba3605))
366
-
367
- # [0.34.0](https://github.com/globalbrain/sefirot/compare/v0.33.0...v0.34.0) (2021-01-28)
368
-
369
- ### Bug Fixes
370
-
371
- * **modal:** not current modals propery ([82c2399](https://github.com/globalbrain/sefirot/commit/82c23990b0985b78cba358dda8aa773a019ee57e))
372
-
373
- ### Features
374
-
375
- * add computedIfOnly composable utility function ([a8ada61](https://github.com/globalbrain/sefirot/commit/a8ada615c07e4864266027a7409baa9b46043e69))
376
-
377
- # [0.33.0](https://github.com/globalbrain/sefirot/compare/v0.32.1...v0.33.0) (2021-01-27)
378
-
379
- ### Features
380
-
381
- * **form:** add callback data creation support in useData composable ([0622618](https://github.com/globalbrain/sefirot/commit/0622618af60646041a1cafb027ac68370c3c3b61))
382
-
383
- ## [0.32.1](https://github.com/globalbrain/sefirot/compare/v0.32.0...v0.32.1) (2021-01-26)
384
-
385
- ### Bug Fixes
386
-
387
- * **types:** fix type error in alert modal ([70baf12](https://github.com/globalbrain/sefirot/commit/70baf12f23a2e14b1277e7677571af57cdecc690))
388
-
389
- # [0.32.0](https://github.com/globalbrain/sefirot/compare/v0.31.0...v0.32.0) (2021-01-26)
390
-
391
- ### Features
392
-
393
- * **alert:** make alert component better ([62996e5](https://github.com/globalbrain/sefirot/commit/62996e5de480a036055e69bcea6ca5e1277ec908))
394
-
395
- # [0.31.0](https://github.com/globalbrain/sefirot/compare/v0.30.0...v0.31.0) (2021-01-25)
396
-
397
- ### Bug Fixes
398
-
399
- * **tag:** make font size a bit bolder ([913448d](https://github.com/globalbrain/sefirot/commit/913448de48f092d3d8424317b0a3773e17f2075a))
400
-
401
- ### Features
402
-
403
- * **icon:** add code icon ([2f56557](https://github.com/globalbrain/sefirot/commit/2f56557e0574bad1340fbb9efb25d0ce88811514))
404
- * **icon:** add file icons ([aacf9d2](https://github.com/globalbrain/sefirot/commit/aacf9d2c0200923f25dd8edf36a26b7a2aefdbca))
405
- * **card:** add loading state option ([8ce9d81](https://github.com/globalbrain/sefirot/commit/8ce9d819e6841d53e21d1f21bef74233f4e34418))
406
- * **header:** support ref for the options ([a0bbc56](https://github.com/globalbrain/sefirot/commit/a0bbc560f9a77d5a9d49198248be6a5e4c6a1937))
407
- * add composable utility functions ([7c0a4a0](https://github.com/globalbrain/sefirot/commit/7c0a4a03e926c488a9dfd7e1e29c88958a7c16bc))
408
-
409
- # [0.30.0](https://github.com/globalbrain/sefirot/compare/v0.29.0...v0.30.0) (2021-01-20)
410
-
411
- ### Features
412
-
413
- * **input-switch:** add size and mode option ([29f7100](https://github.com/globalbrain/sefirot/commit/29f7100112dcb43246800953fd429b8e93e30593))
414
-
415
- # [0.29.0](https://github.com/globalbrain/sefirot/compare/v0.28.0...v0.29.0) (2021-01-19)
416
-
417
- ### Features
418
-
419
- * **card:** add different border color feature ([2942d41](https://github.com/globalbrain/sefirot/commit/2942d4116a257d4e931f756f545f565bbcadc10b))
420
-
421
- # [0.28.0](https://github.com/globalbrain/sefirot/compare/v0.27.0...v0.28.0) (2021-01-18)
422
-
423
- ### Features
424
-
425
- * **header:** add avatar action type ([38fe231](https://github.com/globalbrain/sefirot/commit/38fe231781c786cf57653f39f643071febe03dec))
426
- * **header:** add pill action type ([a5a76e6](https://github.com/globalbrain/sefirot/commit/a5a76e66c50284561b5f12d97e9789cd1f5f5727))
427
-
428
- # [0.27.0](https://github.com/globalbrain/sefirot/compare/v0.26.1...v0.27.0) (2021-01-15)
429
-
430
- ### Features
431
-
432
- * **link:** add link component ([0eb920c](https://github.com/globalbrain/sefirot/commit/0eb920cf1d9a6b3467ee0ebbac79322a81f61c8a))
433
- * **tag:** add tag component ([50e488d](https://github.com/globalbrain/sefirot/commit/50e488db979e2c8ffa6d36d004291b00731a9f2e))
434
- * **header:** add large size ([125a295](https://github.com/globalbrain/sefirot/commit/125a295a67292f5e762e323b2ec7ca3e769ebd42))
435
- * **header:** add tags option ([96a32cb](https://github.com/globalbrain/sefirot/commit/96a32cbd7efc601e1a89e3424a2760708060fa8e))
436
-
437
- ## [0.26.1](https://github.com/globalbrain/sefirot/compare/v0.26.0...v0.26.1) (2021-01-15)
438
-
439
- ### Bug Fixes
440
-
441
- * **card:** size "wide" was not working correctly ([018e75e](https://github.com/globalbrain/sefirot/commit/018e75e192d0d8422f9328c3b1988073bea31cdf))
442
-
443
- # [0.26.0](https://github.com/globalbrain/sefirot/compare/v0.25.0...v0.26.0) (2021-01-15)
444
-
445
- ### Features
446
-
447
- * **header:** add default slot ([e29f664](https://github.com/globalbrain/sefirot/commit/e29f66456d72cc7cef7532f62b9848ee374c7570))
448
-
449
- # [0.25.0](https://github.com/globalbrain/sefirot/compare/v0.24.0...v0.25.0) (2021-01-15)
450
-
451
- ### Features
452
-
453
- * **icon:** add more icons ([451c50b](https://github.com/globalbrain/sefirot/commit/451c50b39f90ce5ec78e181609b595c53683f28d))
454
- * **header:** add header component ([87e4aa6](https://github.com/globalbrain/sefirot/commit/87e4aa6a48a2d4223c58967837573b73bde34490))
455
-
456
- # [0.24.0](https://github.com/globalbrain/sefirot/compare/v0.23.0...v0.24.0) (2021-01-14)
457
-
458
- ### Features
459
-
460
- * **card:** add header actions feature ([ffc99a9](https://github.com/globalbrain/sefirot/commit/ffc99a9031551a7ea53b7140be6ee6a6e01777d2))
461
-
462
- # [0.23.0](https://github.com/globalbrain/sefirot/compare/v0.22.0...v0.23.0) (2021-01-13)
463
-
464
- ### Features
465
-
466
- * **validation:** add not, sameAs, include rules ([e6e958d](https://github.com/globalbrain/sefirot/commit/e6e958d2f88c404f2d9715905103695415e319f1))
467
-
468
- # [0.22.0](https://github.com/globalbrain/sefirot/compare/v0.21.0...v0.22.0) (2021-01-13)
469
-
470
- ### Bug Fixes
471
-
472
- * **input-dropdown:** z-index overwrapping on other inputs ([e0d019c](https://github.com/globalbrain/sefirot/commit/e0d019c5a5d00c9202e807c4882189643862ecd0))
473
-
474
- ### Features
475
-
476
- * **avatar:** add "nano" size ([91399f4](https://github.com/globalbrain/sefirot/commit/91399f44859f3d686c5c2054d5ab515924ff8279))
477
- * **input-dropdown:** add user item type ([d160c96](https://github.com/globalbrain/sefirot/commit/d160c964150360766c2330e423b01412fd69e3a3))
478
-
479
- # [0.21.0](https://github.com/globalbrain/sefirot/compare/v0.20.1...v0.21.0) (2021-01-12)
480
-
481
- ### Bug Fixes
482
-
483
- * **input-dropdown:** search not working as expected ([50f1445](https://github.com/globalbrain/sefirot/commit/50f1445f4b1793f822b8831ac05a1c944c3f5cec))
484
-
485
- ### Features
486
-
487
- * **input-text:** emit value as number when the input type is number ([3ad5b98](https://github.com/globalbrain/sefirot/commit/3ad5b98b876b64a4326227472c9f2286e235ce74))
488
- * **input-textarea:** add size and mode options ([f9eea98](https://github.com/globalbrain/sefirot/commit/f9eea9820296b5521d034ecb8282e54783e6a77b))
489
-
490
- ## [0.20.1](https://github.com/globalbrain/sefirot/compare/v0.20.0...v0.20.1) (2021-01-12)
491
-
492
- ### Bug Fixes
493
-
494
- * **input-day:** fix wrong type date options ([ff55790](https://github.com/globalbrain/sefirot/commit/ff557909bcb857513d608d29a3b20a60b3648632))
495
-
496
- # [0.20.0](https://github.com/globalbrain/sefirot/compare/v0.19.0...v0.20.0) (2021-01-12)
497
-
498
- ### Features
499
-
500
- * **input:** add input year, month, and day component ([1ffa50c](https://github.com/globalbrain/sefirot/commit/1ffa50c61a8e98328fb3f4ddcc1777815f807947))
501
-
502
- # [0.19.0](https://github.com/globalbrain/sefirot/compare/v0.18.0...v0.19.0) (2021-01-07)
503
-
504
- ### Features
505
-
506
- * **input-dropdown:** add dropdown input component ([9fbb802](https://github.com/globalbrain/sefirot/commit/9fbb8025658bacb503ed65cb82da30efdc0b663e))
507
-
508
- # [0.18.0](https://github.com/globalbrain/sefirot/compare/v0.17.0...v0.18.0) (2021-01-05)
509
-
510
- ### Features
511
-
512
- * **tooltip:** add tooltip component ([87ddfdf](https://github.com/globalbrain/sefirot/commit/87ddfdf318cc3a729fb719ab46f7aafdbfabb13a))
513
-
514
- # [0.17.0](https://github.com/globalbrain/sefirot/compare/v0.16.0...v0.17.0) (2020-12-23)
515
-
516
- ### Bug Fixes
517
-
518
- * **button:** info mode hover style not working ([56bbdbe](https://github.com/globalbrain/sefirot/commit/56bbdbe8ebe8b4f9ebbcb4adbdee6a5c6a5e33a8))
519
-
520
- ### Features
521
-
522
- * **icon:** add more icons ([ba9cc4e](https://github.com/globalbrain/sefirot/commit/ba9cc4e0c9322790106796a60e78f2f070163146))
523
- * **validation:** add Form composable function ([dfc4c38](https://github.com/globalbrain/sefirot/commit/dfc4c38292c3b30ee427f522dad01800dd9641a6))
524
- * **validation:** add default error messages ([cdb6d97](https://github.com/globalbrain/sefirot/commit/cdb6d97d5b8406c52cd125b8cc4776829f958651))
525
-
526
- # [0.16.0](https://github.com/globalbrain/sefirot/compare/v0.15.0...v0.16.0) (2020-12-16)
527
-
528
- ### Bug Fixes
529
-
530
- * remove webkit appearance from search input ([c6c366b](https://github.com/globalbrain/sefirot/commit/c6c366b716f82c73ec7d54d47a7b533ea1536cf6))
531
-
532
- ### Features
533
-
534
- * add store and router composables ([b533582](https://github.com/globalbrain/sefirot/commit/b533582f68f3fb5022256012a7be7e0a1ce7971b))
535
- * **button:** add mini and small size ([691f559](https://github.com/globalbrain/sefirot/commit/691f5594154818397331035fc3f7d0f8d974cf94))
536
- * **button:** add mode feature to text type button ([7853d07](https://github.com/globalbrain/sefirot/commit/7853d074ff6b1628795c9b7c446a00e9f602b1f4))
537
- * **input-text:** add leading/trailing text option ([50b9519](https://github.com/globalbrain/sefirot/commit/50b951985a4feea09ad5983fb9e6d84c2f752247))
538
- * **input-text:** add action feature ([94d632d](https://github.com/globalbrain/sefirot/commit/94d632dd99a29dafc38477e31c1f7a7af8d68d82))
539
-
540
- # [0.15.0](https://github.com/globalbrain/sefirot/compare/v0.14.0...v0.15.0) (2020-12-15)
541
-
542
- ### Bug Fixes
543
-
544
- * **styles:** correct shadow depth level ([f548988](https://github.com/globalbrain/sefirot/commit/f548988cc7ae35989ea3c7fc5f5727378b4dda20))
545
-
546
- ### Features
547
-
548
- * **icon:** add more icons ([cf4f700](https://github.com/globalbrain/sefirot/commit/cf4f700eaa35c5653e64c68c21642931d7d8de7d))
549
- * **input-text:** add outlined style and mini size ([f8989eb](https://github.com/globalbrain/sefirot/commit/f8989eb2ac21471b4447aeaa7d1e63d5519391d4))
550
- * **input-select:** add outlined style and mini size ([2e09f3e](https://github.com/globalbrain/sefirot/commit/2e09f3e437236c56dcd2fa5f324e689e29d0bd22))
551
-
552
- # [0.14.0](https://github.com/globalbrain/sefirot/compare/v0.13.0...v0.14.0) (2020-10-09)
553
-
554
-
555
- ### Features
556
-
557
- * **icons:** add plus circle icon ([f33a346](https://github.com/globalbrain/sefirot/commit/f33a346a960008458913f40fdbec6907d3aebb53))
558
-
559
-
560
-
561
- # [0.13.0](https://github.com/globalbrain/sefirot/compare/v0.12.0...v0.13.0) (2020-10-05)
562
-
563
-
564
- ### Features
565
-
566
- * **icons:** add more icons ([7b5350d](https://github.com/globalbrain/sefirot/commit/7b5350d3f63c394b9f8d4adb7ab08ef07156e863))
567
-
568
-
569
-
570
- # [0.12.0](https://github.com/globalbrain/sefirot/compare/v0.11.0...v0.12.0) (2020-09-14)
571
-
572
-
573
- ### Bug Fixes
574
-
575
- * **validation:** mark regex rule as optional ([d66e7ee](https://github.com/globalbrain/sefirot/commit/d66e7ee0b44797fff8de8418c92974ccc1d24b36))
576
-
577
-
578
- ### Features
579
-
580
- * **validation:** add generic validation rule ([6250af1](https://github.com/globalbrain/sefirot/commit/6250af100265691f51589b5585701a209b54ccb7))
581
-
582
-
583
-
584
- # [0.11.0](https://github.com/globalbrain/sefirot/compare/v0.10.0...v0.11.0) (2020-09-11)
585
-
586
-
587
- ### Features
588
-
589
- * **icons:** add "info" and "add" icons ([a148dd8](https://github.com/globalbrain/sefirot/commit/a148dd8c87474c8e13ec5d76679c679066e3553f))
590
-
591
-
592
-
593
- # [0.10.0](https://github.com/globalbrain/sefirot/compare/v0.9.1...v0.10.0) (2020-09-07)
594
-
595
-
596
- ### Bug Fixes
597
-
598
- * **input:** break words in `help` to better display for example long url ([cdc1faa](https://github.com/globalbrain/sefirot/commit/cdc1faa07c9ae54bdd5be1a8e769deebc608add0))
599
- * **window:** do not close the window when clicking on window box ([0ac8630](https://github.com/globalbrain/sefirot/commit/0ac8630cc21d86376eb0ea63ef4e669f05eb3029))
600
-
601
-
602
- ### Features
603
-
604
- * **validation:** add regex validator ([e593a15](https://github.com/globalbrain/sefirot/commit/e593a15e63c061b7dde44065d250f894c1206e75))
605
-
606
-
607
-
608
- ## [0.9.1](https://github.com/globalbrain/sefirot/compare/v0.9.0...v0.9.1) (2020-09-04)
609
-
610
-
611
- ### Bug Fixes
612
-
613
- * **grid:** add missing border-top in empty slot ([3e72345](https://github.com/globalbrain/sefirot/commit/3e7234510967fce16e5189183a8eb2e99837e9b7))
614
-
615
-
616
-
617
- # [0.9.0](https://github.com/globalbrain/sefirot/compare/v0.8.10...v0.9.0) (2020-09-04)
618
-
619
-
620
- ### Bug Fixes
621
-
622
- * fix messed up shadow variables ([311f94d](https://github.com/globalbrain/sefirot/commit/311f94d668c9ff7fb9821f50954ffa0098b1015e))
623
-
624
-
625
- ### Features
626
-
627
- * add header and footer support for SGrid component ([20ff160](https://github.com/globalbrain/sefirot/commit/20ff160841d68e1410492b571caf5f2bbce2104a))
628
-
629
-
630
-
631
- ## [0.8.10](https://github.com/globalbrain/sefirot/compare/v0.8.9...v0.8.10) (2020-09-01)
632
-
633
-
634
- ### Bug Fixes
635
-
636
- * **validation:** fix reactivity not working as expected ([049cc1a](https://github.com/globalbrain/sefirot/commit/049cc1a5a7342319a062a6801b6e8850257a9789))
637
-
638
-
639
-
640
- ## [0.8.9](https://github.com/globalbrain/sefirot/compare/v0.8.8...v0.8.9) (2020-03-31)
641
-
642
-
643
- ### Bug Fixes
644
-
645
- * select component text over wrapping chevron icon ([fd263ed](https://github.com/globalbrain/sefirot/commit/fd263ed3e35dfcc90e01963a191e92f9de5c7258))
646
- * textarea component missing error border style ([3901880](https://github.com/globalbrain/sefirot/commit/3901880fd7b8165ee2ceca0c4aa5b3c28018de64))
647
-
648
-
649
- ### Features
650
-
651
- * **validation:** add url validation rule ([2685c1c](https://github.com/globalbrain/sefirot/commit/2685c1c5d4ee323b4d12b4710d20d79799ba9924))
652
-
653
-
654
-
655
- ## [0.8.8](https://github.com/globalbrain/sefirot/compare/v0.8.7...v0.8.8) (2020-03-23)
656
-
657
-
658
- ### Bug Fixes
659
-
660
- * body scrolls to top when switching open modals ([#21](https://github.com/globalbrain/sefirot/issues/21)) ([628c244](https://github.com/globalbrain/sefirot/commit/628c244bdaadcbe3d367a98e1a5e3bb79eb5fa3b))
661
- * input select component style ([#20](https://github.com/globalbrain/sefirot/issues/20)) ([db72c5c](https://github.com/globalbrain/sefirot/commit/db72c5c0576adc7cadf12a368d1a3cfcff6496ab))
662
-
663
-
664
-
665
- ## [0.8.7](https://github.com/globalbrain/sefirot/compare/v0.8.6...v0.8.7) (2020-03-18)
666
-
667
-
668
- ### Features
669
-
670
- * add email validator ([579f949](https://github.com/globalbrain/sefirot/commit/579f949699b6fb56a0a3a5cb51388b08621647ac))
671
-
672
-
673
-
674
- ## [0.8.6](https://github.com/globalbrain/sefirot/compare/v0.8.5...v0.8.6) (2020-03-17)
675
-
676
-
677
-
678
- ## [0.8.5](https://github.com/globalbrain/sefirot/compare/v0.8.4...v0.8.5) (2020-03-17)
679
-
680
-
681
- ### Bug Fixes
682
-
683
- * button block property not working as expected ([#16](https://github.com/globalbrain/sefirot/issues/16)) ([01c9c92](https://github.com/globalbrain/sefirot/commit/01c9c92bf66c407528d116f77de956eda33adcb3))
684
- * button with `a` tag not aligning content at center ([fa9e595](https://github.com/globalbrain/sefirot/commit/fa9e5957410e2887962ba95d2288906aee6a02ce))
685
-
686
-
687
- ### Features
688
-
689
- * add jumbo size to the button component ([bbccc81](https://github.com/globalbrain/sefirot/commit/bbccc81749209b933ee4a49c6c0f37794203757a))
690
-
691
-
692
-
693
- ## [0.8.4](https://github.com/globalbrain/sefirot/compare/v0.8.3...v0.8.4) (2020-03-09)
694
-
695
-
696
- ### Features
697
-
698
- * add more icons ([af28d52](https://github.com/globalbrain/sefirot/commit/af28d52e68f44eb9ea44806abd824b3b2e610ba1))
699
-
700
-
701
-
702
- ## [0.8.3](https://github.com/globalbrain/sefirot/compare/v0.8.2...v0.8.3) (2020-03-09)
703
-
704
-
705
-
706
- ## [0.8.2](https://github.com/globalbrain/sefirot/compare/v0.8.1...v0.8.2) (2020-03-05)
707
-
708
-
709
- ### Bug Fixes
710
-
711
- * icons not being aligned correctyl ([db8215b](https://github.com/globalbrain/sefirot/commit/db8215b6159a71d2a485cb30c62856e161061c3b))
712
-
713
-
714
- ### Features
715
-
716
- * add more icons ([f3deef3](https://github.com/globalbrain/sefirot/commit/f3deef38267b5dc29e0b579256aee197c084bdef))
717
-
718
-
719
-
720
- ## [0.8.1](https://github.com/globalbrain/sefirot/compare/v0.8.0...v0.8.1) (2020-01-28)
721
-
722
-
723
- ### Bug Fixes
724
-
725
- * block level button width not being 100% ([dfd5be0](https://github.com/globalbrain/sefirot/commit/dfd5be032080504abbb11616773177376de351cd))
726
-
727
-
728
-
729
- # [0.8.0](https://github.com/globalbrain/sefirot/compare/v0.7.3...v0.8.0) (2020-01-15)
730
-
731
-
732
- ### Bug Fixes
733
-
734
- * correct list element under StoryBase component ([6a94414](https://github.com/globalbrain/sefirot/commit/6a94414632853d83b40e8b83bafb9e65fe68538e))
735
-
736
-
737
- ### Features
738
-
739
- * add `tertiary` type to SButton ([813aace](https://github.com/globalbrain/sefirot/commit/813aace664e18d622d967ed5dbb30d37b1487843))
740
- * add 2 new icons ([b2ffab4](https://github.com/globalbrain/sefirot/commit/b2ffab4b9db63057f6b6641b93c6f893bc602867))
741
- * add icon option to the SButton ([5d74af6](https://github.com/globalbrain/sefirot/commit/5d74af62749d4968faf4e1b1ffdbb5ac64dccc3e))
742
- * add image icon ([af69f50](https://github.com/globalbrain/sefirot/commit/af69f50351afdbe1da0715b49be8ff17f02d7023))
743
- * add more example and test case for SInputText ([13deeb3](https://github.com/globalbrain/sefirot/commit/13deeb31f3c98a3f994b1d709ce02388f77d90e3))
744
- * add more icons ([33b3c5a](https://github.com/globalbrain/sefirot/commit/33b3c5ae36758f45a396f7edeccd48e2818c849b))
745
- * add more tailwind styles ([2b12eb9](https://github.com/globalbrain/sefirot/commit/2b12eb976620921c3bbd4e34c11492038e3a0587))
746
- * add plus icon ([e46b6cd](https://github.com/globalbrain/sefirot/commit/e46b6cd023ba161543dab79393e2fd3e7eb5fd74))
747
- * add s-form utility styles ([aafed8e](https://github.com/globalbrain/sefirot/commit/aafed8e2e60595909e0def3daa0a8a3945e63d37))
748
- * add SGrid component ([de56fe4](https://github.com/globalbrain/sefirot/commit/de56fe427e4eb14a6d117100f5d8201ef59e551c))
749
- * add SInputDate component ([cbb247c](https://github.com/globalbrain/sefirot/commit/cbb247c2bbc550f22c383c110405f4e1de61794c))
750
- * add SInputTime component ([c2fe387](https://github.com/globalbrain/sefirot/commit/c2fe387dc04a1952970e3ee71e6978685c298b2e))
751
- * add snackbars component ([abfc328](https://github.com/globalbrain/sefirot/commit/abfc328adf6b486ab7fb9b6fe116dc512d7f60a4))
752
- * add SResponsive component ([7462ecc](https://github.com/globalbrain/sefirot/commit/7462ecce60c3eac4cce1f8980ea2fa4ec5d64548))
753
- * add typescript support base ([a456ad3](https://github.com/globalbrain/sefirot/commit/a456ad3c0e2a160fdc95560e3f36b219e2ae72cc))
754
- * bring back all components ([bfc2898](https://github.com/globalbrain/sefirot/commit/bfc2898124ce4c5aeeca739cd0a26cc052fe09aa))
755
- * enhance the roundness of the button component ([915d61a](https://github.com/globalbrain/sefirot/commit/915d61acdc4ce7f4216d806cb4bd992e49ab4f8b))
756
- * install tailwindcss ([0d6c639](https://github.com/globalbrain/sefirot/commit/0d6c6395ca620e6a605021d4178bd95e378b7949))
757
- * rebuild form validation system ([2afbff5](https://github.com/globalbrain/sefirot/commit/2afbff558a7c1fcb67b65b6ad0061da86d074dc3))
758
- * update color schema and base font type ([fedc18c](https://github.com/globalbrain/sefirot/commit/fedc18cd9610be28bc03fe7772002ba8df355805))
759
-
760
-
761
-
762
- ## [0.7.3](https://github.com/globalbrain/sefirot/compare/v0.7.2...v0.7.3) (2019-11-05)
763
-
764
-
765
-
766
- ## [0.7.2](https://github.com/globalbrain/sefirot/compare/v0.7.1...v0.7.2) (2019-10-25)
767
-
768
-
769
-
770
- ## [0.7.1](https://github.com/globalbrain/sefirot/compare/v0.7.0...v0.7.1) (2019-09-30)
771
-
772
-
773
-
774
- # [0.7.0](https://github.com/globalbrain/sefirot/compare/v0.6.3...v0.7.0) (2019-09-11)
775
-
776
-
777
-
778
- ## [0.6.3](https://github.com/globalbrain/sefirot/compare/v0.6.2...v0.6.3) (2019-09-06)
779
-
780
-
781
-
782
- ## [0.6.2](https://github.com/globalbrain/sefirot/compare/v0.6.1...v0.6.2) (2019-08-29)
783
-
784
-
785
-
786
- ## [0.6.1](https://github.com/globalbrain/sefirot/compare/v0.6.0...v0.6.1) (2019-07-23)
787
-
788
-
789
-
790
- # [0.6.0](https://github.com/globalbrain/sefirot/compare/v0.5.0...v0.6.0) (2019-07-10)
791
-
792
-
793
-
794
- # [0.5.0](https://github.com/globalbrain/sefirot/compare/v0.4.0...v0.5.0) (2019-07-04)
795
-
796
-
797
-
798
- # [0.4.0](https://github.com/globalbrain/sefirot/compare/v0.3.1...v0.4.0) (2019-07-04)
799
-
800
-
801
-
802
- ## [0.3.1](https://github.com/globalbrain/sefirot/compare/v0.3.0...v0.3.1) (2019-07-03)
803
-
804
-
805
-
806
- # [0.3.0](https://github.com/globalbrain/sefirot/compare/v0.2.1...v0.3.0) (2019-07-02)
807
-
808
-
809
-
810
- ## [0.2.1](https://github.com/globalbrain/sefirot/compare/v0.2.0...v0.2.1) (2019-06-19)
811
-
812
-
813
-
814
- # [0.2.0](https://github.com/globalbrain/sefirot/compare/v0.1.0...v0.2.0) (2019-06-19)
815
-
816
-
817
-
818
- # 0.1.0 (2019-06-11)
819
-
820
-
1
+ # [2.0.0-draft.1](https://github.com/globalbrain/sefirot/compare/v0.71.0...v2.0.0-draft.1) (2021-12-13)
821
2
 
3
+ Initial release.