@useblu/ocean-react 1.83.0 → 1.85.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 CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.85.0](https://github.com/ocean-ds/ocean-web/compare/v1.84.0...v1.85.0) (2025-07-16)
7
+
8
+ ### Features
9
+
10
+ - unordered list doc ([#1147](https://github.com/ocean-ds/ocean-web/issues/1147)) ([05d571b](https://github.com/ocean-ds/ocean-web/commit/05d571b4b1d5a32858caae4b958ae6ed55469374))
11
+
12
+ # [1.84.0](https://github.com/ocean-ds/ocean-web/compare/v1.83.0...v1.84.0) (2025-07-11)
13
+
14
+ ### Features
15
+
16
+ - simple list doc ([#1145](https://github.com/ocean-ds/ocean-web/issues/1145)) ([bd0c5e9](https://github.com/ocean-ds/ocean-web/commit/bd0c5e9bb122a92a65ec54d7f2408af2c279366b))
17
+
6
18
  # [1.83.0](https://github.com/ocean-ds/ocean-web/compare/v1.82.0...v1.83.0) (2025-07-10)
7
19
 
8
20
  ### Features
@@ -0,0 +1,15 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import List from '../List';
3
+ declare const meta: Meta<typeof List>;
4
+ export default meta;
5
+ declare type Story = StoryObj<typeof List>;
6
+ export declare const SimpleList: Story;
7
+ export declare const AllLevelInformation: Story;
8
+ export declare const WithPositiveValue: Story;
9
+ export declare const WithTags: Story;
10
+ export declare const WithCustomIcons: Story;
11
+ export declare const WithSubItems: Story;
12
+ export declare const MultipleUsages: Story;
13
+ export declare const PaymentsList: Story;
14
+ export declare const BankTransactions: Story;
15
+ //# sourceMappingURL=Examples.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Examples.stories.d.ts","sourceRoot":"","sources":["../../../src/List/stories/Examples.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAgBvD,OAAO,IAAI,MAAM,SAAS,CAAC;AAE3B,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,IAAI,CAgB3B,CAAC;AAEF,eAAe,IAAI,CAAC;AAEpB,aAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAoDnC,eAAO,MAAM,UAAU,EAAE,KASxB,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,KAgBjC,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,KAc/B,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAetB,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,KAY7B,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAsB1B,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,KAmD5B,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAiD1B,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,KAwD9B,CAAC"}
@@ -0,0 +1,12 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import List from '../List';
3
+ declare const meta: Meta<typeof List>;
4
+ export default meta;
5
+ declare type Story = StoryObj<typeof List>;
6
+ export declare const Usage: Story;
7
+ export declare const BasicList: Story;
8
+ export declare const IconsList: Story;
9
+ export declare const ValuesList: Story;
10
+ export declare const TagsList: Story;
11
+ export declare const SubItemsList: Story;
12
+ //# sourceMappingURL=List.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"List.stories.d.ts","sourceRoot":"","sources":["../../../src/List/stories/List.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AASvD,OAAO,IAAI,MAAM,SAAS,CAAC;AAG3B,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,IAAI,CAkD3B,CAAC;AAEF,eAAe,IAAI,CAAC;AAEpB,aAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAwBnC,eAAO,MAAM,KAAK,EAAE,KAWnB,CAAC;AAiDF,eAAO,MAAM,SAAS,EAAE,KAYvB,CAAC;AAUF,eAAO,MAAM,SAAS,EAAE,KAoBvB,CAAC;AAWF,eAAO,MAAM,UAAU,EAAE,KAgBxB,CAAC;AAUF,eAAO,MAAM,QAAQ,EAAE,KAyBtB,CAAC;AAWF,eAAO,MAAM,YAAY,EAAE,KAsC1B,CAAC"}
@@ -0,0 +1,10 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import UnorderedListItem from '../UnorderedListItem';
3
+ declare const meta: Meta<typeof UnorderedListItem>;
4
+ export default meta;
5
+ declare type Story = StoryObj<typeof UnorderedListItem>;
6
+ export declare const Usage: Story;
7
+ export declare const IconVariants: Story;
8
+ export declare const WithTitle: Story;
9
+ export declare const WithoutTitle: Story;
10
+ //# sourceMappingURL=UnorderedListItem.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnorderedListItem.stories.d.ts","sourceRoot":"","sources":["../../../src/UnorderedListItem/stories/UnorderedListItem.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAIvD,OAAO,iBAAiB,MAAM,sBAAsB,CAAC;AAErD,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,OAAO,iBAAiB,CAkDxC,CAAC;AAEF,eAAe,IAAI,CAAC;AAEpB,aAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAehD,eAAO,MAAM,KAAK,EAAE,KAenB,CAAC;AAkEF,eAAO,MAAM,YAAY,EAAE,KAyB1B,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,KAmBvB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,KAiB1B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@useblu/ocean-react",
3
- "version": "1.83.0",
3
+ "version": "1.85.0",
4
4
  "private": false,
5
5
  "description": "React components that implement Ocean's Design System.",
6
6
  "main": "index.js",