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