@globalbrain/sefirot 0.70.1 → 2.0.0-draft.2

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