@bluevolt-tech/lumen 1.5.2 → 2.0.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/dist/components/bv-alert-banner/bv-alert-banner.d.ts +33 -0
- package/dist/components/bv-alert-banner/bv-alert-banner.js +206 -0
- package/dist/components/bv-badge/bv-badge.d.ts +1 -1
- package/dist/components/bv-badge/bv-badge.js +1 -1
- package/dist/components/bv-button/bv-button.d.ts +1 -1
- package/dist/components/bv-button/bv-button.js +1 -1
- package/dist/components/bv-checkbox/bv-checkbox.js +1 -1
- package/dist/components/bv-course-detail-modal/bv-course-detail-modal.js +1 -1
- package/dist/components/bv-course-grid-card/bv-course-grid-card.d.ts +4 -0
- package/dist/components/bv-course-grid-card/bv-course-grid-card.js +75 -18
- package/dist/components/bv-course-list-card/bv-course-list-card.d.ts +4 -0
- package/dist/components/bv-course-list-card/bv-course-list-card.js +75 -18
- package/dist/components/bv-date-range-input/bv-date-range-input.d.ts +23 -0
- package/dist/components/bv-date-range-input/bv-date-range-input.js +950 -0
- package/dist/components/bv-date-range-picker/bv-date-range-picker.d.ts +56 -0
- package/dist/components/bv-date-range-picker/bv-date-range-picker.js +778 -0
- package/dist/components/bv-empty-state/bv-empty-state.js +1 -1
- package/dist/components/bv-filter-dropdown/bv-filter-dropdown.d.ts +20 -5
- package/dist/components/bv-filter-dropdown/bv-filter-dropdown.js +263 -25
- package/dist/components/bv-filter-panel/bv-filter-panel.js +1 -1
- package/dist/components/bv-input/bv-input.d.ts +24 -0
- package/dist/components/bv-input/bv-input.js +148 -0
- package/dist/components/bv-input-dropdown/bv-input-dropdown.d.ts +46 -0
- package/dist/components/bv-input-dropdown/bv-input-dropdown.js +501 -0
- package/dist/components/bv-pagination/bv-pagination.d.ts +13 -1
- package/dist/components/bv-pagination/bv-pagination.js +290 -9
- package/dist/components/bv-portal-header/bv-portal-header.js +2 -2
- package/dist/components/bv-searchbox/bv-searchbox.js +1 -1
- package/dist/components/bv-segmented-control/bv-segmented-control.d.ts +26 -0
- package/dist/components/bv-segmented-control/bv-segmented-control.js +128 -0
- package/dist/components/bv-select/bv-select.d.ts +41 -0
- package/dist/components/bv-select/bv-select.js +240 -0
- package/dist/components/bv-split-button/bv-split-button.d.ts +37 -0
- package/dist/components/bv-split-button/bv-split-button.js +264 -0
- package/dist/components/bv-table/bv-table.d.ts +15 -0
- package/dist/components/bv-table/bv-table.js +260 -33
- package/dist/components/bv-toggle/bv-toggle.d.ts +2 -1
- package/dist/components/bv-toggle/bv-toggle.js +2 -2
- package/dist/components/bv-tooltip/bv-tooltip.d.ts +18 -0
- package/dist/components/bv-tooltip/bv-tooltip.js +144 -0
- package/dist/components/bv-user-row/bv-user-row.js +1 -1
- package/dist/storybook/stories/screens/cet-report.data.d.ts +55 -0
- package/dist/storybook/stories/screens/cet-report.data.js +3697 -0
- package/dist/themes/base.css +15 -1
- package/package.json +42 -1
- package/themes/base.css +15 -1
package/dist/themes/base.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Wed, 22 Jul 2026 02:07:11 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -24,6 +24,11 @@
|
|
|
24
24
|
--bv-color-success: #16a34a;
|
|
25
25
|
--bv-color-success-dark: #15803d;
|
|
26
26
|
--bv-color-success-light: #dcfce7;
|
|
27
|
+
--bv-color-purple: #5925dc;
|
|
28
|
+
--bv-color-purple-light: #f4f3ff;
|
|
29
|
+
--bv-color-orange: #c4320a;
|
|
30
|
+
--bv-color-orange-light: #fff6ed;
|
|
31
|
+
--bv-color-indigo: #363f72;
|
|
27
32
|
--bv-color-neutral-0: #ffffff;
|
|
28
33
|
--bv-color-neutral-100: #f8fafc;
|
|
29
34
|
--bv-color-neutral-200: #e2e8f0;
|
|
@@ -34,12 +39,20 @@
|
|
|
34
39
|
--bv-color-neutral-700: #334155;
|
|
35
40
|
--bv-color-neutral-800: #1e293b;
|
|
36
41
|
--bv-color-neutral-900: #0f172a;
|
|
42
|
+
--bv-spacing-2xs: 2px;
|
|
37
43
|
--bv-spacing-xs: 4px;
|
|
44
|
+
--bv-spacing-xs-plus: 6px;
|
|
38
45
|
--bv-spacing-sm: 8px;
|
|
46
|
+
--bv-spacing-sm-plus: 10px;
|
|
47
|
+
--bv-spacing-md-minus: 12px;
|
|
39
48
|
--bv-spacing-md: 16px;
|
|
49
|
+
--bv-spacing-md-plus: 20px;
|
|
40
50
|
--bv-spacing-lg: 24px;
|
|
41
51
|
--bv-spacing-xl: 32px;
|
|
42
52
|
--bv-spacing-2xl: 48px;
|
|
53
|
+
--bv-control-height-sm: 28px;
|
|
54
|
+
--bv-control-height-md: 36px;
|
|
55
|
+
--bv-control-height-lg: 44px;
|
|
43
56
|
--bv-font-family-base: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
44
57
|
--bv-font-family-mono: 'Cascadia Code', 'Fira Code', monospace;
|
|
45
58
|
--bv-font-size-xs: 12px;
|
|
@@ -63,4 +76,5 @@
|
|
|
63
76
|
--bv-transition-fast: 100ms ease-in-out;
|
|
64
77
|
--bv-transition-normal: 200ms ease-in-out;
|
|
65
78
|
--bv-transition-slow: 300ms ease-in-out;
|
|
79
|
+
--bv-focus-ring: 2px solid #0277bd;
|
|
66
80
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bluevolt-tech/lumen",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"format": "prettier --write components builder",
|
|
26
26
|
"format:check": "prettier --check components builder",
|
|
27
27
|
"validate:screens": "node scripts/validate-screens.js",
|
|
28
|
+
"validate:versions": "node scripts/validate-versions.js",
|
|
28
29
|
"prepare": "husky"
|
|
29
30
|
},
|
|
30
31
|
"files": [
|
|
@@ -35,6 +36,30 @@
|
|
|
35
36
|
"!**/*.test.js"
|
|
36
37
|
],
|
|
37
38
|
"exports": {
|
|
39
|
+
"./components/bv-segmented-control": {
|
|
40
|
+
"types": "./dist/components/bv-segmented-control/bv-segmented-control.d.ts",
|
|
41
|
+
"default": "./dist/components/bv-segmented-control/bv-segmented-control.js"
|
|
42
|
+
},
|
|
43
|
+
"./components/bv-input-dropdown": {
|
|
44
|
+
"types": "./dist/components/bv-input-dropdown/bv-input-dropdown.d.ts",
|
|
45
|
+
"default": "./dist/components/bv-input-dropdown/bv-input-dropdown.js"
|
|
46
|
+
},
|
|
47
|
+
"./components/bv-date-range-picker": {
|
|
48
|
+
"types": "./dist/components/bv-date-range-picker/bv-date-range-picker.d.ts",
|
|
49
|
+
"default": "./dist/components/bv-date-range-picker/bv-date-range-picker.js"
|
|
50
|
+
},
|
|
51
|
+
"./components/bv-date-range-input": {
|
|
52
|
+
"types": "./dist/components/bv-date-range-input/bv-date-range-input.d.ts",
|
|
53
|
+
"default": "./dist/components/bv-date-range-input/bv-date-range-input.js"
|
|
54
|
+
},
|
|
55
|
+
"./components/bv-input": {
|
|
56
|
+
"types": "./dist/components/bv-input/bv-input.d.ts",
|
|
57
|
+
"default": "./dist/components/bv-input/bv-input.js"
|
|
58
|
+
},
|
|
59
|
+
"./components/bv-select": {
|
|
60
|
+
"types": "./dist/components/bv-select/bv-select.d.ts",
|
|
61
|
+
"default": "./dist/components/bv-select/bv-select.js"
|
|
62
|
+
},
|
|
38
63
|
"./components/bv-category-pill": {
|
|
39
64
|
"types": "./dist/components/bv-category-pill/bv-category-pill.d.ts",
|
|
40
65
|
"default": "./dist/components/bv-category-pill/bv-category-pill.js"
|
|
@@ -51,6 +76,18 @@
|
|
|
51
76
|
"types": "./dist/components/bv-button/bv-button.d.ts",
|
|
52
77
|
"default": "./dist/components/bv-button/bv-button.js"
|
|
53
78
|
},
|
|
79
|
+
"./components/bv-split-button": {
|
|
80
|
+
"types": "./dist/components/bv-split-button/bv-split-button.d.ts",
|
|
81
|
+
"default": "./dist/components/bv-split-button/bv-split-button.js"
|
|
82
|
+
},
|
|
83
|
+
"./components/bv-tooltip": {
|
|
84
|
+
"types": "./dist/components/bv-tooltip/bv-tooltip.d.ts",
|
|
85
|
+
"default": "./dist/components/bv-tooltip/bv-tooltip.js"
|
|
86
|
+
},
|
|
87
|
+
"./components/bv-alert-banner": {
|
|
88
|
+
"types": "./dist/components/bv-alert-banner/bv-alert-banner.d.ts",
|
|
89
|
+
"default": "./dist/components/bv-alert-banner/bv-alert-banner.js"
|
|
90
|
+
},
|
|
54
91
|
"./components/bv-checkbox": {
|
|
55
92
|
"types": "./dist/components/bv-checkbox/bv-checkbox.d.ts",
|
|
56
93
|
"default": "./dist/components/bv-checkbox/bv-checkbox.js"
|
|
@@ -155,6 +192,10 @@
|
|
|
155
192
|
"types": "./dist/storybook/stories/screens/course-catalog.data.d.ts",
|
|
156
193
|
"default": "./dist/storybook/stories/screens/course-catalog.data.js"
|
|
157
194
|
},
|
|
195
|
+
"./storybook/stories/screens/cet-report.data": {
|
|
196
|
+
"types": "./dist/storybook/stories/screens/cet-report.data.d.ts",
|
|
197
|
+
"default": "./dist/storybook/stories/screens/cet-report.data.js"
|
|
198
|
+
},
|
|
158
199
|
"./themes/*": "./themes/*",
|
|
159
200
|
"./assets/*": "./assets/*"
|
|
160
201
|
},
|
package/themes/base.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Wed, 22 Jul 2026 02:07:11 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -24,6 +24,11 @@
|
|
|
24
24
|
--bv-color-success: #16a34a;
|
|
25
25
|
--bv-color-success-dark: #15803d;
|
|
26
26
|
--bv-color-success-light: #dcfce7;
|
|
27
|
+
--bv-color-purple: #5925dc;
|
|
28
|
+
--bv-color-purple-light: #f4f3ff;
|
|
29
|
+
--bv-color-orange: #c4320a;
|
|
30
|
+
--bv-color-orange-light: #fff6ed;
|
|
31
|
+
--bv-color-indigo: #363f72;
|
|
27
32
|
--bv-color-neutral-0: #ffffff;
|
|
28
33
|
--bv-color-neutral-100: #f8fafc;
|
|
29
34
|
--bv-color-neutral-200: #e2e8f0;
|
|
@@ -34,12 +39,20 @@
|
|
|
34
39
|
--bv-color-neutral-700: #334155;
|
|
35
40
|
--bv-color-neutral-800: #1e293b;
|
|
36
41
|
--bv-color-neutral-900: #0f172a;
|
|
42
|
+
--bv-spacing-2xs: 2px;
|
|
37
43
|
--bv-spacing-xs: 4px;
|
|
44
|
+
--bv-spacing-xs-plus: 6px;
|
|
38
45
|
--bv-spacing-sm: 8px;
|
|
46
|
+
--bv-spacing-sm-plus: 10px;
|
|
47
|
+
--bv-spacing-md-minus: 12px;
|
|
39
48
|
--bv-spacing-md: 16px;
|
|
49
|
+
--bv-spacing-md-plus: 20px;
|
|
40
50
|
--bv-spacing-lg: 24px;
|
|
41
51
|
--bv-spacing-xl: 32px;
|
|
42
52
|
--bv-spacing-2xl: 48px;
|
|
53
|
+
--bv-control-height-sm: 28px;
|
|
54
|
+
--bv-control-height-md: 36px;
|
|
55
|
+
--bv-control-height-lg: 44px;
|
|
43
56
|
--bv-font-family-base: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
44
57
|
--bv-font-family-mono: 'Cascadia Code', 'Fira Code', monospace;
|
|
45
58
|
--bv-font-size-xs: 12px;
|
|
@@ -63,4 +76,5 @@
|
|
|
63
76
|
--bv-transition-fast: 100ms ease-in-out;
|
|
64
77
|
--bv-transition-normal: 200ms ease-in-out;
|
|
65
78
|
--bv-transition-slow: 300ms ease-in-out;
|
|
79
|
+
--bv-focus-ring: 2px solid #0277bd;
|
|
66
80
|
}
|