maru_design2 2.25.3 → 2.26.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 +23 -0
- package/dist/components/atoms/code/Code.d.ts +7 -0
- package/dist/components/atoms/code/index.d.ts +1 -0
- package/dist/components/atoms/icon/iconmap.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +62056 -30
- package/dist/utils/copy.d.ts +6 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.26.1](https://github.com/42maru-ai/maru-design2/compare/v2.26.0...v2.26.1) (2025-05-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* :bento: Icon - add AlertCircle_s1610 ([c868546](https://github.com/42maru-ai/maru-design2/commit/c868546e42eb3e8385e85346b2340d8d213f8097))
|
|
9
|
+
* :bento: Icon - delete AlertCircleBg_s1610 ([ee64358](https://github.com/42maru-ai/maru-design2/commit/ee643587bc7d45c36f0bfd128bcb55c1f4e70f0b))
|
|
10
|
+
|
|
11
|
+
## [2.26.0](https://github.com/42maru-ai/maru-design2/compare/v2.25.3...v2.26.0) (2025-05-13)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* :sparkles: Code - add change handler [#570](https://github.com/42maru-ai/maru-design2/issues/570) ([a52d570](https://github.com/42maru-ai/maru-design2/commit/a52d570b25e8578977f13db4464e843849e94b0b))
|
|
17
|
+
* :sparkles: Code - add code component [#570](https://github.com/42maru-ai/maru-design2/issues/570) ([184eb39](https://github.com/42maru-ai/maru-design2/commit/184eb3995de1aedd4cb7450d3e4be9a11f48e14d))
|
|
18
|
+
* :sparkles: Code - add copy value [#570](https://github.com/42maru-ai/maru-design2/issues/570) ([a9b8b3c](https://github.com/42maru-ai/maru-design2/commit/a9b8b3c1fe476354590d128f55438cd102e5fb27))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* :art: Code - update copyable ([de73c90](https://github.com/42maru-ai/maru-design2/commit/de73c90b7725f1ac430ace8888d9118fa8271d8a))
|
|
24
|
+
* :fire: Code - remove editable feature :570 ([9a56de6](https://github.com/42maru-ai/maru-design2/commit/9a56de661764621d5f1dee3cb42d282adb786d89))
|
|
25
|
+
|
|
3
26
|
## [2.25.3](https://github.com/42maru-ai/maru-design2/compare/v2.25.2...v2.25.3) (2025-04-28)
|
|
4
27
|
|
|
5
28
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Code';
|
|
@@ -37,8 +37,8 @@ export declare const iconmap: {
|
|
|
37
37
|
};
|
|
38
38
|
};
|
|
39
39
|
export declare const ICONS: {
|
|
40
|
-
readonly AlertCircleBg_s1610: "AlertCircleBg_s1610";
|
|
41
40
|
readonly AlertCircle_s1413: "AlertCircle_s1413";
|
|
41
|
+
readonly AlertCircle_s1610: "AlertCircle_s1610";
|
|
42
42
|
readonly AlertCircle_s1615: "AlertCircle_s1615";
|
|
43
43
|
readonly AlertTriangleBg_s2410: "AlertTriangleBg_s2410";
|
|
44
44
|
readonly AlertTriangle_s1615: "AlertTriangle_s1615";
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from './components/styleProvider';
|
|
|
2
2
|
export * from './components/atoms/button';
|
|
3
3
|
export * from './components/atoms/checkbox';
|
|
4
4
|
export * from './components/atoms/chip';
|
|
5
|
+
export * from './components/atoms/code';
|
|
5
6
|
export * from './components/atoms/icon';
|
|
6
7
|
export * from './components/atoms/input';
|
|
7
8
|
export * from './components/atoms/popover';
|