@globalbrain/sefirot 2.34.0 → 2.35.0
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/lib/components/SButton.vue +7 -5
- package/lib/components/SCard.vue +70 -0
- package/lib/components/SCardBlock.vue +33 -0
- package/lib/components/SCardFooter.vue +14 -0
- package/lib/components/SCardFooterAction.vue +31 -0
- package/lib/components/SCardFooterActions.vue +15 -0
- package/lib/components/SCardHeader.vue +15 -0
- package/lib/components/SCardHeaderAction.vue +28 -0
- package/lib/components/SCardHeaderActionClose.vue +27 -0
- package/lib/components/SCardHeaderActionCollapse.vue +47 -0
- package/lib/components/SCardHeaderActions.vue +13 -0
- package/lib/components/SCardHeaderTitle.vue +15 -0
- package/lib/components/SDropdown.vue +6 -11
- package/lib/components/SDropdownSection.vue +0 -25
- package/lib/components/SDropdownSectionActions.vue +3 -2
- package/lib/components/SDropdownSectionFilter.vue +60 -26
- package/lib/components/SDropdownSectionFilterItemAvatar.vue +1 -1
- package/lib/components/SDropdownSectionFilterItemText.vue +1 -2
- package/lib/components/SDropdownSectionMenu.vue +3 -2
- package/lib/components/SIcon.vue +1 -1
- package/lib/components/SModal.vue +2 -2
- package/lib/components/STableCell.vue +1 -0
- package/lib/components/STableCellAvatar.vue +8 -2
- package/lib/components/STableColumn.vue +3 -3
- package/lib/components/STableHeader.vue +2 -0
- package/lib/composables/Card.ts +45 -0
- package/lib/composables/Flyout.ts +1 -1
- package/lib/composables/Form.ts +4 -4
- package/lib/composables/Table.ts +1 -0
- package/lib/composables/Tooltip.ts +9 -10
- package/lib/composables/Utils.ts +2 -2
- package/lib/mixins/Card.ts +30 -0
- package/lib/styles/variables.css +214 -86
- package/lib/support/Num.ts +7 -0
- package/package.json +40 -40
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@globalbrain/sefirot",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"packageManager": "pnpm@8.
|
|
3
|
+
"version": "2.35.0",
|
|
4
|
+
"packageManager": "pnpm@8.5.0",
|
|
5
5
|
"description": "Vue Components for Global Brain Design System.",
|
|
6
6
|
"author": "Kia Ishii <ka.ishii@globalbrains.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -21,71 +21,71 @@
|
|
|
21
21
|
"lib"
|
|
22
22
|
],
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@iconify-icons/ph": "^1.2.
|
|
25
|
-
"@iconify/vue": "^4.
|
|
24
|
+
"@iconify-icons/ph": "^1.2.4",
|
|
25
|
+
"@iconify/vue": "^4.1.1",
|
|
26
26
|
"@types/body-scroll-lock": "^3.1.0",
|
|
27
|
-
"@types/lodash-es": "^4.17.
|
|
27
|
+
"@types/lodash-es": "^4.17.7",
|
|
28
28
|
"@types/markdown-it": "^12.2.3",
|
|
29
|
-
"@vuelidate/core": "^2.0.
|
|
30
|
-
"@vuelidate/validators": "^2.0.
|
|
31
|
-
"@vueuse/core": "^
|
|
32
|
-
"body-scroll-lock": "
|
|
29
|
+
"@vuelidate/core": "^2.0.2",
|
|
30
|
+
"@vuelidate/validators": "^2.0.2",
|
|
31
|
+
"@vueuse/core": "^10.1.2",
|
|
32
|
+
"body-scroll-lock": "4.0.0-beta.0",
|
|
33
33
|
"fuse.js": "^6.6.2",
|
|
34
34
|
"lodash-es": "^4.17.21",
|
|
35
35
|
"markdown-it": "^13.0.1",
|
|
36
36
|
"normalize.css": "^8.0.1",
|
|
37
|
-
"pinia": "^2.0.
|
|
38
|
-
"postcss": "^8.4.
|
|
39
|
-
"postcss-nested": "^6.0.
|
|
40
|
-
"typescript": "
|
|
41
|
-
"v-calendar": "^3.0.
|
|
37
|
+
"pinia": "^2.0.36",
|
|
38
|
+
"postcss": "^8.4.23",
|
|
39
|
+
"postcss-nested": "^6.0.1",
|
|
40
|
+
"typescript": "~4.9.5",
|
|
41
|
+
"v-calendar": "^3.0.3",
|
|
42
42
|
"vue": "^3.2.47",
|
|
43
43
|
"vue-router": "^4.1.6",
|
|
44
|
-
"vue-virtual-scroller": "
|
|
44
|
+
"vue-virtual-scroller": "2.0.0-beta.8"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"dayjs": "^1.11.7"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@globalbrain/eslint-config": "^1.5.0",
|
|
51
|
-
"@histoire/plugin-vue": "^0.
|
|
52
|
-
"@iconify-icons/ph": "^1.2.
|
|
53
|
-
"@iconify/vue": "^4.
|
|
51
|
+
"@histoire/plugin-vue": "^0.16.1",
|
|
52
|
+
"@iconify-icons/ph": "^1.2.4",
|
|
53
|
+
"@iconify/vue": "^4.1.1",
|
|
54
54
|
"@types/body-scroll-lock": "^3.1.0",
|
|
55
|
-
"@types/lodash-es": "^4.17.
|
|
55
|
+
"@types/lodash-es": "^4.17.7",
|
|
56
56
|
"@types/markdown-it": "^12.2.3",
|
|
57
|
-
"@types/node": "^
|
|
58
|
-
"@vitejs/plugin-vue": "^4.
|
|
59
|
-
"@vitest/coverage-c8": "^0.
|
|
60
|
-
"@vue/test-utils": "^2.3.
|
|
61
|
-
"@vuelidate/core": "^2.0.
|
|
62
|
-
"@vuelidate/validators": "^2.0.
|
|
63
|
-
"@vueuse/core": "^
|
|
64
|
-
"body-scroll-lock": "
|
|
57
|
+
"@types/node": "^20.1.1",
|
|
58
|
+
"@vitejs/plugin-vue": "^4.2.1",
|
|
59
|
+
"@vitest/coverage-c8": "^0.31.0",
|
|
60
|
+
"@vue/test-utils": "^2.3.2",
|
|
61
|
+
"@vuelidate/core": "^2.0.2",
|
|
62
|
+
"@vuelidate/validators": "^2.0.2",
|
|
63
|
+
"@vueuse/core": "^10.1.2",
|
|
64
|
+
"body-scroll-lock": "4.0.0-beta.0",
|
|
65
65
|
"chalk": "^4.1.2",
|
|
66
66
|
"conventional-changelog-cli": "^2.2.2",
|
|
67
67
|
"enquirer": "^2.3.6",
|
|
68
68
|
"eslint": "^8.40.0",
|
|
69
69
|
"execa": "^5.1.1",
|
|
70
70
|
"fuse.js": "^6.6.2",
|
|
71
|
-
"happy-dom": "^9.9
|
|
72
|
-
"histoire": "^0.
|
|
71
|
+
"happy-dom": "^9.10.9",
|
|
72
|
+
"histoire": "^0.16.1",
|
|
73
73
|
"lodash-es": "^4.17.21",
|
|
74
74
|
"markdown-it": "^13.0.1",
|
|
75
75
|
"normalize.css": "^8.0.1",
|
|
76
|
-
"pinia": "^2.0.
|
|
77
|
-
"postcss": "^8.4.
|
|
78
|
-
"postcss-nested": "^6.0.
|
|
79
|
-
"semver": "^7.
|
|
80
|
-
"typescript": "
|
|
81
|
-
"v-calendar": "3.0.
|
|
82
|
-
"vite": "^4.
|
|
83
|
-
"vitepress": "1.0.0-alpha.
|
|
84
|
-
"vitest": "^0.
|
|
76
|
+
"pinia": "^2.0.36",
|
|
77
|
+
"postcss": "^8.4.23",
|
|
78
|
+
"postcss-nested": "^6.0.1",
|
|
79
|
+
"semver": "^7.5.0",
|
|
80
|
+
"typescript": "~4.9.5",
|
|
81
|
+
"v-calendar": "^3.0.3",
|
|
82
|
+
"vite": "^4.3.5",
|
|
83
|
+
"vitepress": "1.0.0-alpha.75",
|
|
84
|
+
"vitest": "^0.31.0",
|
|
85
85
|
"vue": "^3.2.47",
|
|
86
86
|
"vue-router": "^4.1.6",
|
|
87
|
-
"vue-tsc": "^1.
|
|
88
|
-
"vue-virtual-scroller": "
|
|
87
|
+
"vue-tsc": "^1.7.1",
|
|
88
|
+
"vue-virtual-scroller": "2.0.0-beta.8"
|
|
89
89
|
},
|
|
90
90
|
"scripts": {
|
|
91
91
|
"docs": "vitepress dev docs --port 4000",
|