@egovernments/digit-ui-components-css 0.0.2-beta.7 → 0.2.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/CHANGELOG.md +154 -0
- package/README.md +11 -2
- package/dist/index.css +10295 -3600
- package/dist/index.min.css +3 -3
- package/package.json +8 -8
- package/src/digitv2/components/accordionV2.scss +214 -0
- package/src/digitv2/components/{infoCardV2.scss → alertCardV2.scss} +1 -4
- package/src/digitv2/components/backLinkV2.scss +1 -1
- package/src/digitv2/components/bottomSheetV2.scss +121 -0
- package/src/digitv2/components/breadcrumbV2.scss +38 -0
- package/src/digitv2/components/buttonsV2.scss +82 -31
- package/src/digitv2/components/cardV2.scss +498 -0
- package/src/digitv2/components/cardbasedoptionsV2.scss +47 -0
- package/src/digitv2/components/cardlabelV2.scss +8 -0
- package/src/digitv2/components/checkboxV2.scss +54 -6
- package/src/digitv2/components/chipV2.scss +39 -0
- package/src/digitv2/components/dividerV2.scss +13 -0
- package/src/digitv2/components/errorMessageV2.scss +29 -8
- package/src/digitv2/components/fieldV1.scss +47 -2
- package/src/digitv2/components/{uploaderV2.scss → fileUploadV2.scss} +209 -22
- package/src/digitv2/components/filterCardV2.scss +417 -0
- package/src/digitv2/components/footerV2.scss +208 -0
- package/src/digitv2/components/formCardV2.scss +234 -0
- package/src/digitv2/components/hamburgerV2.scss +555 -0
- package/src/digitv2/components/headerV2.scss +426 -0
- package/src/digitv2/components/headerdropdownV2.scss +233 -0
- package/src/digitv2/components/labelFieldPairV2.scss +37 -11
- package/src/digitv2/components/landingpagecardV2.scss +278 -0
- package/src/digitv2/components/loaderV2.scss +47 -0
- package/src/digitv2/components/menuCardV2.scss +116 -0
- package/src/digitv2/components/metricCardV2.scss +151 -0
- package/src/digitv2/components/mobileNumberV2.scss +1 -1
- package/src/digitv2/components/multiSelectDropdownV2.scss +219 -8
- package/src/digitv2/components/otpInputV2.scss +99 -0
- package/src/digitv2/components/panelCardV2.scss +19 -0
- package/src/digitv2/components/panelV2.scss +19 -0
- package/src/digitv2/components/popUpV2.scss +86 -2
- package/src/digitv2/components/radiobtnV2.scss +35 -6
- package/src/digitv2/components/selectDropdownV2.scss +257 -13
- package/src/digitv2/components/selectionTagV2.scss +102 -0
- package/src/digitv2/components/sidePanelV2.scss +222 -0
- package/src/digitv2/components/sidenavV2.scss +516 -0
- package/src/digitv2/components/stepperV2.scss +106 -6
- package/src/digitv2/components/summaryCardFieldPairV2.scss +83 -0
- package/src/digitv2/components/summaryCardV2.scss +100 -0
- package/src/digitv2/components/switchV2.scss +112 -0
- package/src/digitv2/components/tabV2.scss +126 -0
- package/src/digitv2/components/tableV2.scss +697 -0
- package/src/digitv2/components/tagV2.scss +108 -0
- package/src/digitv2/components/textInputV2.scss +5 -3
- package/src/digitv2/components/textareaV2.scss +1 -1
- package/src/digitv2/components/textblockV2.scss +38 -0
- package/src/digitv2/components/timelineV2.scss +144 -14
- package/src/digitv2/components/toastV2.scss +79 -1
- package/src/digitv2/components/toggleV2.scss +38 -0
- package/src/digitv2/components/tooltipwrapperV2.scss +365 -0
- package/src/digitv2/components/treeSelectV2.scss +58 -1
- package/src/digitv2/index.scss +171 -5
- package/src/digitv2/pages/employee/workbench.scss +9 -9
- package/src/digitv2/typography.scss +24 -9
- package/src/index.scss +0 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,159 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [0.2.0] - 2025-02-19
|
|
8
|
+
### New Components Added
|
|
9
|
+
|
|
10
|
+
## Atoms
|
|
11
|
+
- Accordion
|
|
12
|
+
- ActionButton
|
|
13
|
+
- AlertCard
|
|
14
|
+
- BackLink
|
|
15
|
+
- BreadCrumb
|
|
16
|
+
- Button
|
|
17
|
+
- CheckBox
|
|
18
|
+
- Chip
|
|
19
|
+
- Divider
|
|
20
|
+
- Dropdown
|
|
21
|
+
- Panels
|
|
22
|
+
- FileUpload
|
|
23
|
+
- Loader
|
|
24
|
+
- MultiselectDropdown
|
|
25
|
+
- OTPInput
|
|
26
|
+
- RadioButton
|
|
27
|
+
- SelectionTag
|
|
28
|
+
- Stepper
|
|
29
|
+
- Switch
|
|
30
|
+
- Tab
|
|
31
|
+
- Tag
|
|
32
|
+
- TextBlock
|
|
33
|
+
- TextInput
|
|
34
|
+
- Timeline
|
|
35
|
+
- Toast
|
|
36
|
+
- Toggle
|
|
37
|
+
- Tooltip
|
|
38
|
+
|
|
39
|
+
## Molecules
|
|
40
|
+
- AccordionList
|
|
41
|
+
- PopUp
|
|
42
|
+
- Card (Basic,FormCard,SummaryCard)
|
|
43
|
+
- BottomSheet
|
|
44
|
+
- ButtonGroup
|
|
45
|
+
- Header
|
|
46
|
+
- SidePanel
|
|
47
|
+
- PanelCard
|
|
48
|
+
- FilterCard
|
|
49
|
+
- Footer
|
|
50
|
+
- Hamburger
|
|
51
|
+
- LandingPageCard
|
|
52
|
+
- MenuCard
|
|
53
|
+
- MetricCard
|
|
54
|
+
- SideNav
|
|
55
|
+
- TableMolecule
|
|
56
|
+
- TimelineMolecule
|
|
57
|
+
- TooltipWrapper
|
|
58
|
+
|
|
59
|
+
## MoleculeGroup
|
|
60
|
+
- LandingPageWrapper
|
|
61
|
+
- MenuCardWrapper
|
|
62
|
+
|
|
63
|
+
### New Changes Added
|
|
64
|
+
- Added external link support in LandingPageCards
|
|
65
|
+
- Added external link support in BreadCrumbs
|
|
66
|
+
- Added Spacers, Colors, Typography library
|
|
67
|
+
- Added Icons
|
|
68
|
+
- Added Animations
|
|
69
|
+
- Added Error Message Component.
|
|
70
|
+
- Added Info Button Component.
|
|
71
|
+
- Added RemoveableTag Component.
|
|
72
|
+
- Added Uploader Component With Three Varinats UploadFile,UploadPopup and UploadImage.
|
|
73
|
+
- Supporting multiple variants in Dropdown and MultiSelectDropdown components
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
## [0.0.2-beta.36] - 2024-09-23
|
|
78
|
+
### Changed
|
|
79
|
+
- Added Table css
|
|
80
|
+
|
|
81
|
+
## [0.0.2-beta.35] - 2024-09-19
|
|
82
|
+
### Changed
|
|
83
|
+
- Added OTPInput css
|
|
84
|
+
|
|
85
|
+
## [0.0.2-beta.34] - 2024-09-18
|
|
86
|
+
### Changed
|
|
87
|
+
- Added Configuration for close icon in chip
|
|
88
|
+
|
|
89
|
+
## [0.0.2-beta.33] - 2024-09-13
|
|
90
|
+
### Changed
|
|
91
|
+
- Added Tab Styles and other changes
|
|
92
|
+
|
|
93
|
+
## [0.0.2-beta.30] - 2024-09-12
|
|
94
|
+
### fixes
|
|
95
|
+
- Css version fix
|
|
96
|
+
|
|
97
|
+
## [0.0.2-beta.30] - 2024-09-06
|
|
98
|
+
### Changed
|
|
99
|
+
- Added LandingPageCard,MenuCard styles
|
|
100
|
+
|
|
101
|
+
## [0.0.2-beta.29] - 2024-09-05
|
|
102
|
+
### Changed
|
|
103
|
+
- Added Accordion animation styles
|
|
104
|
+
|
|
105
|
+
## [0.0.2-beta.28] - 2024-09-04
|
|
106
|
+
### Changed
|
|
107
|
+
- Added BottomSheet styles
|
|
108
|
+
|
|
109
|
+
## [0.0.2-beta.27] - 2024-09-04
|
|
110
|
+
### Changed
|
|
111
|
+
- Updated Tooltip styles
|
|
112
|
+
|
|
113
|
+
## [0.0.2-beta.24] - 2024-08-22
|
|
114
|
+
### Changed
|
|
115
|
+
- Added Accordion css and updated Sidebar css
|
|
116
|
+
|
|
117
|
+
## [0.0.2-beta.23] - 2024-08-22
|
|
118
|
+
### Changed
|
|
119
|
+
- Fixed some css of old component overriding issue
|
|
120
|
+
|
|
121
|
+
## [0.0.2-beta.22] - 2024-08-16
|
|
122
|
+
### Changed
|
|
123
|
+
- Added css for Switch Component
|
|
124
|
+
|
|
125
|
+
## [0.0.2-beta.21] - 2024-08-07
|
|
126
|
+
### Changed
|
|
127
|
+
- Updated css for Tooltip Component
|
|
128
|
+
|
|
129
|
+
## [0.0.2-beta.20] - 2024-08-02
|
|
130
|
+
### Added
|
|
131
|
+
- Added css for Tag Component
|
|
132
|
+
|
|
133
|
+
## [0.0.2-beta.19] - 2024-07-31
|
|
134
|
+
### Added
|
|
135
|
+
- Added css change for SelectionCard
|
|
136
|
+
|
|
137
|
+
## [0.0.2-beta.15] - 2024-07-30
|
|
138
|
+
### Added
|
|
139
|
+
- Added Error State for Timeline, SelectionCard Component
|
|
140
|
+
|
|
141
|
+
## [0.0.2-beta.13] - 2024-07-16
|
|
142
|
+
### Added
|
|
143
|
+
- Added styles for sidebar and hamburger
|
|
144
|
+
|
|
145
|
+
## [0.0.2-beta.11] - 2024-07-04
|
|
146
|
+
### Added
|
|
147
|
+
- Updated styles for actionbar,header and timeline molecule
|
|
148
|
+
|
|
149
|
+
## [0.0.2-beta.10] - 2024-06-28
|
|
150
|
+
### Added
|
|
151
|
+
- Updated styles
|
|
152
|
+
|
|
153
|
+
## [0.0.2-beta.9] - 2024-06-25
|
|
154
|
+
### Added
|
|
155
|
+
- Updated Uploader preview styles
|
|
156
|
+
|
|
3
157
|
## [0.0.2-beta.6] - 2024-06-24
|
|
4
158
|
### Added
|
|
5
159
|
- Added ViewMore button for timeline molecule
|
package/README.md
CHANGED
|
@@ -68,14 +68,23 @@ frontend/micro-ui/web/public/index.html
|
|
|
68
68
|
|
|
69
69
|
For a detailed changelog, see the [CHANGELOG.md](./CHANGELOG.md) file.
|
|
70
70
|
|
|
71
|
+
|
|
71
72
|
## Published from DIGIT-UI-LIBRARIES
|
|
72
73
|
|
|
73
74
|
DIGIT-UI-LIBRARIES Repo (https://github.com/egovernments/DIGIT-UI-LIBRARIES/tree/master)
|
|
74
75
|
|
|
75
76
|
# Contributors
|
|
76
77
|
|
|
77
|
-
[
|
|
78
|
+
[nabeelmd-egov] [bhavya-eGov] [nipunarora-eGov] [swathi-egov] [jagankumar-egov] [Tulika-eGov] [Ramkrishna-egov]
|
|
79
|
+
|
|
80
|
+
# Reference
|
|
81
|
+
|
|
82
|
+
Storybook (https://unified-dev.digit.org/storybook/)
|
|
83
|
+
|
|
84
|
+
Documentation (https://core.digit.org/guides/developer-guide/ui-developer-guide/digit-ui/ui-components-standardisation/digit-ui-components0.2.0)
|
|
78
85
|
|
|
79
86
|
## License
|
|
80
87
|
|
|
81
|
-
MIT © [jagankumar-egov](https://github.com/jagankumar-egov)
|
|
88
|
+
MIT © [jagankumar-egov](https://github.com/jagankumar-egov)
|
|
89
|
+
|
|
90
|
+

|