@egovernments/digit-ui-components-css 0.0.2-beta.9 → 0.2.0-beta.10

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 (65) hide show
  1. package/CHANGELOG.md +154 -0
  2. package/README.md +11 -2
  3. package/dist/index.css +10911 -3668
  4. package/dist/index.min.css +3 -3
  5. package/package.json +8 -9
  6. package/src/digitv2/components/accordionV2.scss +214 -0
  7. package/src/digitv2/components/{infoCardV2.scss → alertCardV2.scss} +1 -4
  8. package/src/digitv2/components/backLinkV2.scss +1 -1
  9. package/src/digitv2/components/bottomSheetV2.scss +121 -0
  10. package/src/digitv2/components/breadcrumbV2.scss +38 -0
  11. package/src/digitv2/components/buttonsV2.scss +85 -29
  12. package/src/digitv2/components/cardV2.scss +504 -0
  13. package/src/digitv2/components/cardbasedoptionsV2.scss +47 -0
  14. package/src/digitv2/components/cardlabelV2.scss +8 -0
  15. package/src/digitv2/components/checkboxV2.scss +54 -6
  16. package/src/digitv2/components/chipV2.scss +39 -0
  17. package/src/digitv2/components/dividerV2.scss +13 -0
  18. package/src/digitv2/components/errorMessageV2.scss +29 -8
  19. package/src/digitv2/components/fieldV1.scss +150 -2
  20. package/src/digitv2/components/{uploaderV2.scss → fileUploadV2.scss} +163 -9
  21. package/src/digitv2/components/filterCardV2.scss +417 -0
  22. package/src/digitv2/components/footerV2.scss +208 -0
  23. package/src/digitv2/components/formCardV2.scss +234 -0
  24. package/src/digitv2/components/hamburgerV2.scss +555 -0
  25. package/src/digitv2/components/headerV2.scss +426 -0
  26. package/src/digitv2/components/headerdropdownV2.scss +233 -0
  27. package/src/digitv2/components/labelFieldPairV2.scss +45 -11
  28. package/src/digitv2/components/landingpagecardV2.scss +278 -0
  29. package/src/digitv2/components/loaderV2.scss +47 -0
  30. package/src/digitv2/components/menuCardV2.scss +116 -0
  31. package/src/digitv2/components/metricCardV2.scss +151 -0
  32. package/src/digitv2/components/mobileNumberV2.scss +1 -1
  33. package/src/digitv2/components/multiSelectDropdownV2.scss +225 -9
  34. package/src/digitv2/components/otpInputV2.scss +99 -0
  35. package/src/digitv2/components/panelCardV2.scss +19 -0
  36. package/src/digitv2/components/panelV2.scss +19 -0
  37. package/src/digitv2/components/popUpV2.scss +86 -2
  38. package/src/digitv2/components/radiobtnV2.scss +35 -6
  39. package/src/digitv2/components/selectDropdownV2.scss +258 -14
  40. package/src/digitv2/components/selectionTagV2.scss +102 -0
  41. package/src/digitv2/components/sidePanelV2.scss +222 -0
  42. package/src/digitv2/components/sidenavV2.scss +516 -0
  43. package/src/digitv2/components/stepperV2.scss +106 -6
  44. package/src/digitv2/components/summaryCardFieldPairV2.scss +83 -0
  45. package/src/digitv2/components/summaryCardV2.scss +100 -0
  46. package/src/digitv2/components/switchV2.scss +112 -0
  47. package/src/digitv2/components/tabV2.scss +126 -0
  48. package/src/digitv2/components/tableV2.scss +697 -0
  49. package/src/digitv2/components/tagV2.scss +108 -0
  50. package/src/digitv2/components/textInputV2.scss +5 -3
  51. package/src/digitv2/components/textareaV2.scss +1 -1
  52. package/src/digitv2/components/textblockV2.scss +38 -0
  53. package/src/digitv2/components/timelineV2.scss +145 -15
  54. package/src/digitv2/components/toastV2.scss +79 -1
  55. package/src/digitv2/components/toggleV2.scss +38 -0
  56. package/src/digitv2/components/tooltipwrapperV2.scss +365 -0
  57. package/src/digitv2/components/treeSelectV2.scss +58 -1
  58. package/src/digitv2/index.scss +175 -9
  59. package/src/digitv2/pages/employee/boundaryFilter.scss +63 -0
  60. package/src/digitv2/pages/employee/inboxsearchcomposer.scss +450 -0
  61. package/src/digitv2/pages/employee/index.scss +3 -0
  62. package/src/digitv2/pages/employee/reactdatatable.scss +132 -0
  63. package/src/digitv2/pages/employee/workbench.scss +10 -10
  64. package/src/digitv2/typography.scss +24 -9
  65. 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-beta.9] - 2025-04-28
8
+ ### New changes added
9
+ - Added new css for BoundaryComponent in BounDaryFilter.scss
10
+
11
+ ## [0.2.0] - 2025-02-19
12
+ ### New Components Added
13
+
14
+ ## Atoms
15
+ - Accordion
16
+ - ActionButton
17
+ - AlertCard
18
+ - BackLink
19
+ - BreadCrumb
20
+ - Button
21
+ - CheckBox
22
+ - Chip
23
+ - Divider
24
+ - Dropdown
25
+ - Panels
26
+ - FileUpload
27
+ - Loader
28
+ - MultiselectDropdown
29
+ - OTPInput
30
+ - RadioButton
31
+ - SelectionTag
32
+ - Stepper
33
+ - Switch
34
+ - Tab
35
+ - Tag
36
+ - TextBlock
37
+ - TextInput
38
+ - Timeline
39
+ - Toast
40
+ - Toggle
41
+ - Tooltip
42
+
43
+ ## Molecules
44
+ - AccordionList
45
+ - PopUp
46
+ - Card (Basic,FormCard,SummaryCard)
47
+ - BottomSheet
48
+ - ButtonGroup
49
+ - Header
50
+ - SidePanel
51
+ - PanelCard
52
+ - FilterCard
53
+ - Footer
54
+ - Hamburger
55
+ - LandingPageCard
56
+ - MenuCard
57
+ - MetricCard
58
+ - SideNav
59
+ - TableMolecule
60
+ - TimelineMolecule
61
+ - TooltipWrapper
62
+
63
+ ## MoleculeGroup
64
+ - LandingPageWrapper
65
+ - MenuCardWrapper
66
+
67
+ ### New Changes Added
68
+ - Added external link support in LandingPageCards
69
+ - Added external link support in BreadCrumbs
70
+ - Added Spacers, Colors, Typography library
71
+ - Added Icons
72
+ - Added Animations
73
+ - Added Error Message Component.
74
+ - Added Info Button Component.
75
+ - Added RemoveableTag Component.
76
+ - Added Uploader Component With Three Varinats UploadFile,UploadPopup and UploadImage.
77
+ - Supporting multiple variants in Dropdown and MultiSelectDropdown components
78
+
79
+
80
+
81
+ ## [0.0.2-beta.36] - 2024-09-23
82
+ ### Changed
83
+ - Added Table css
84
+
85
+ ## [0.0.2-beta.35] - 2024-09-19
86
+ ### Changed
87
+ - Added OTPInput css
88
+
89
+ ## [0.0.2-beta.34] - 2024-09-18
90
+ ### Changed
91
+ - Added Configuration for close icon in chip
92
+
93
+ ## [0.0.2-beta.33] - 2024-09-13
94
+ ### Changed
95
+ - Added Tab Styles and other changes
96
+
97
+ ## [0.0.2-beta.30] - 2024-09-12
98
+ ### fixes
99
+ - Css version fix
100
+
101
+ ## [0.0.2-beta.30] - 2024-09-06
102
+ ### Changed
103
+ - Added LandingPageCard,MenuCard styles
104
+
105
+ ## [0.0.2-beta.29] - 2024-09-05
106
+ ### Changed
107
+ - Added Accordion animation styles
108
+
109
+ ## [0.0.2-beta.28] - 2024-09-04
110
+ ### Changed
111
+ - Added BottomSheet styles
112
+
113
+ ## [0.0.2-beta.27] - 2024-09-04
114
+ ### Changed
115
+ - Updated Tooltip styles
116
+
117
+ ## [0.0.2-beta.24] - 2024-08-22
118
+ ### Changed
119
+ - Added Accordion css and updated Sidebar css
120
+
121
+ ## [0.0.2-beta.23] - 2024-08-22
122
+ ### Changed
123
+ - Fixed some css of old component overriding issue
124
+
125
+ ## [0.0.2-beta.22] - 2024-08-16
126
+ ### Changed
127
+ - Added css for Switch Component
128
+
129
+ ## [0.0.2-beta.21] - 2024-08-07
130
+ ### Changed
131
+ - Updated css for Tooltip Component
132
+
133
+ ## [0.0.2-beta.20] - 2024-08-02
134
+ ### Added
135
+ - Added css for Tag Component
136
+
137
+ ## [0.0.2-beta.19] - 2024-07-31
138
+ ### Added
139
+ - Added css change for SelectionCard
140
+
141
+ ## [0.0.2-beta.15] - 2024-07-30
142
+ ### Added
143
+ - Added Error State for Timeline, SelectionCard Component
144
+
145
+ ## [0.0.2-beta.13] - 2024-07-16
146
+ ### Added
147
+ - Added styles for sidebar and hamburger
148
+
149
+ ## [0.0.2-beta.11] - 2024-07-04
150
+ ### Added
151
+ - Updated styles for actionbar,header and timeline molecule
152
+
153
+ ## [0.0.2-beta.10] - 2024-06-28
154
+ ### Added
155
+ - Updated styles
156
+
3
157
  ## [0.0.2-beta.9] - 2024-06-25
4
158
  ### Added
5
159
  - Updated Uploader preview styles
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
- [jagankumar-egov] [nipunarora-eGov] [Tulika-eGov] [Ramkrishna-egov] [nabeelmd-eGov] [anil-egov] [swathi-egov]
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
+ ![Logo](https://s3.ap-south-1.amazonaws.com/works-dev-asset/mseva-white-logo.png)