@stack-spot/portal-layout 2.18.1 → 2.19.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 +14 -0
- package/dist/components/NotificationCenter/styled.js +2 -2
- package/dist/layout.css +5 -0
- package/dist/types.d.ts +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/NotificationCenter/styled.ts +2 -2
- package/src/layout.css +5 -0
- package/src/types.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.19.1](https://github.com/stack-spot/portal-commons/compare/portal-layout@v2.19.0...portal-layout@v2.19.1) (2024-12-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* 1157 unread notifications circle ([#582](https://github.com/stack-spot/portal-commons/issues/582)) ([dd30ed0](https://github.com/stack-spot/portal-commons/commit/dd30ed028faa1ee426b3700e34042b9e7fd66e41))
|
|
9
|
+
|
|
10
|
+
## [2.19.0](https://github.com/stack-spot/portal-commons/compare/portal-layout@v2.18.1...portal-layout@v2.19.0) (2024-12-14)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* new workspace manager endpoints and extra large modal ([3b8768e](https://github.com/stack-spot/portal-commons/commit/3b8768eeb0b408059ab503ce19f3e22de5f2ad5e))
|
|
16
|
+
|
|
3
17
|
## [2.18.1](https://github.com/stack-spot/portal-commons/compare/portal-layout@v2.18.0...portal-layout@v2.18.1) (2024-12-10)
|
|
4
18
|
|
|
5
19
|
|
package/dist/layout.css
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type PortalAcronym = 'EDP' | 'AI' | 'HUB' | 'CS' | 'ACCOUNT';
|
|
2
|
-
export type RightPanelSize = 'small' | 'medium' | 'large';
|
|
2
|
+
export type RightPanelSize = 'small' | 'medium' | 'large' | 'extra-large';
|
|
3
3
|
export type ModalSize = RightPanelSize | 'fit-content';
|
|
4
4
|
export type CustomModalSize = ModalSize | 'full';
|
|
5
5
|
//# sourceMappingURL=types.d.ts.map
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,SAAS,CAAA;AACnE,MAAM,MAAM,cAAc,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,SAAS,CAAA;AACnE,MAAM,MAAM,cAAc,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,aAAa,CAAA;AACzE,MAAM,MAAM,SAAS,GAAG,cAAc,GAAG,aAAa,CAAA;AACtD,MAAM,MAAM,eAAe,GAAG,SAAS,GAAG,MAAM,CAAA"}
|
package/package.json
CHANGED
package/src/layout.css
CHANGED
package/src/types.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export type PortalAcronym = 'EDP' | 'AI' | 'HUB' | 'CS' | 'ACCOUNT'
|
|
2
|
-
export type RightPanelSize = 'small' | 'medium' | 'large'
|
|
2
|
+
export type RightPanelSize = 'small' | 'medium' | 'large' | 'extra-large'
|
|
3
3
|
export type ModalSize = RightPanelSize | 'fit-content'
|
|
4
4
|
export type CustomModalSize = ModalSize | 'full'
|