@globalbrain/sefirot 0.71.0 → 2.0.0-draft.3

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