@equinor/echo-components 0.9.5-beta-0 → 0.9.6
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/README.md +29 -29
- package/index.cjs.d.ts +1 -1
- package/index.cjs.js +1 -1
- package/package.json +1 -1
- package/src/components/floatingActionButton/FloatingActionButton.d.ts +1 -1
- package/src/components/floatingActionButton/fabGroup/FabButton.d.ts +54 -0
- package/src/components/floatingActionButton/fabGroup/FabGroup.d.ts +8 -0
- package/src/components/floatingActionButton/fabGroup/index.d.ts +6 -0
- package/src/components/floatingActionButton/index.d.ts +2 -0
- package/src/components/horizontalTabView/HorizontalTabView.d.ts +14 -0
- package/src/components/horizontalTabView/index.d.ts +14 -0
- package/src/components/iconLink/compactIconLink/CompactIconLink.d.ts +10 -0
- package/src/components/index.d.ts +4 -1
- package/src/components/legend/MainLegend.d.ts +9 -1
- package/src/components/legend/layerLegend/LayerLegend.d.ts +5 -1
- package/src/elements/tagIcon/Chip.d.ts +1 -0
- package/src/icons/echoAssets/subsea.d.ts +1 -0
- /package/src/components/{inlineTagIconLink → iconLink/inlineTagIconLink}/InlineTagIconLink.d.ts +0 -0
package/README.md
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
# EchoComponents
|
|
2
|
-
|
|
3
|
-
This publishable library was generated with [Nx](https://nx.dev).
|
|
4
|
-
|
|
5
|
-
Building blocks for Echo, built on top of EDS (Equinor Design System).
|
|
6
|
-
|
|
7
|
-
## Online storybook
|
|
8
|
-
|
|
9
|
-
Publishing static storybook page
|
|
10
|
-
|
|
11
|
-
- a github action builds and deploys the static storybook page to the following branch: `echo-components-storybook` - we shouldn't delete this one!
|
|
12
|
-
- another github action will pick it up from here, and publish it to a github page
|
|
13
|
-
|
|
14
|
-
[Online storybook can be found here](https://bookish-adventure-l5zz573.pages.github.io/?path=/docs/introduction--docs)
|
|
15
|
-
|
|
16
|
-
## How to develop and release EchoComponents
|
|
17
|
-
|
|
18
|
-
Check the [readme](/libs/README.md) in the NX libraries folder.
|
|
19
|
-
|
|
20
|
-
## Available NPM scripts
|
|
21
|
-
|
|
22
|
-
- `lint-components`
|
|
23
|
-
- `build-components`
|
|
24
|
-
- `test-components`
|
|
25
|
-
|
|
26
|
-
## Old repository of echoComponents
|
|
27
|
-
|
|
28
|
-
Keeping it for historical reasons.
|
|
29
|
-
https://github.com/equinor/EchoComponents
|
|
1
|
+
# EchoComponents
|
|
2
|
+
|
|
3
|
+
This publishable library was generated with [Nx](https://nx.dev).
|
|
4
|
+
|
|
5
|
+
Building blocks for Echo, built on top of EDS (Equinor Design System).
|
|
6
|
+
|
|
7
|
+
## Online storybook
|
|
8
|
+
|
|
9
|
+
Publishing static storybook page
|
|
10
|
+
|
|
11
|
+
- a github action builds and deploys the static storybook page to the following branch: `echo-components-storybook` - we shouldn't delete this one!
|
|
12
|
+
- another github action will pick it up from here, and publish it to a github page
|
|
13
|
+
|
|
14
|
+
[Online storybook can be found here](https://bookish-adventure-l5zz573.pages.github.io/?path=/docs/introduction--docs)
|
|
15
|
+
|
|
16
|
+
## How to develop and release EchoComponents
|
|
17
|
+
|
|
18
|
+
Check the [readme](/libs/README.md) in the NX libraries folder.
|
|
19
|
+
|
|
20
|
+
## Available NPM scripts
|
|
21
|
+
|
|
22
|
+
- `lint-components`
|
|
23
|
+
- `build-components`
|
|
24
|
+
- `test-components`
|
|
25
|
+
|
|
26
|
+
## Old repository of echoComponents
|
|
27
|
+
|
|
28
|
+
Keeping it for historical reasons.
|
|
29
|
+
https://github.com/equinor/EchoComponents
|
package/index.cjs.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./src
|
|
1
|
+
export * from "./src/index";
|