@kwantis-id3/frontend-library 0.10.0 → 0.11.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/README.md +2 -0
- package/dist/esm/index.js +35 -40
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/index.d.ts +3 -0
- package/dist/index.d.ts +2 -1
- package/package.json +3 -3
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import styled from "@emotion/styled";
|
|
1
2
|
export { Button, ButtonProps } from "./Button";
|
|
2
3
|
export { ThemeColors, ThemeColorsObject, ThemeContextProvider, useThemeContext, } from "./ThemeContext";
|
|
3
4
|
export { Accordion, AccordionProps } from "./Accordion";
|
|
4
5
|
export { SingleSelect, SingleSelectProps, MultiSelect, MultiSelectProps, } from "./SelectFilter";
|
|
5
6
|
export { Slider, SliderProps } from "./Slider";
|
|
7
|
+
/** export emotion */
|
|
8
|
+
export { styled };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { Interpolation } from '@emotion/styled';
|
|
3
|
+
export { default as styled } from '@emotion/styled';
|
|
2
4
|
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
3
5
|
import * as React from 'react';
|
|
4
6
|
import React__default from 'react';
|
|
5
|
-
import { Interpolation } from '@emotion/styled';
|
|
6
7
|
import { Theme } from '@emotion/react';
|
|
7
8
|
|
|
8
9
|
interface Color {
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kwantis-id3/frontend-library",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Kwantis frontend components collection",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "kwantis"
|
|
7
7
|
},
|
|
8
8
|
"license": "apache-2.0",
|
|
9
9
|
"devDependencies": {
|
|
10
|
+
"@emotion/react": "11.10.6",
|
|
11
|
+
"@emotion/styled": "11.10.6",
|
|
10
12
|
"@rollup/plugin-commonjs": "^24.0.1",
|
|
11
13
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
12
14
|
"@rollup/plugin-typescript": "^11.0.0",
|
|
@@ -45,8 +47,6 @@
|
|
|
45
47
|
"typescript": "^5.0.3"
|
|
46
48
|
},
|
|
47
49
|
"peerDependencies": {
|
|
48
|
-
"@emotion/react": ">= 11.10.0",
|
|
49
|
-
"@emotion/styled": ">= 11.10.0",
|
|
50
50
|
"react": ">= 17.0.2"
|
|
51
51
|
},
|
|
52
52
|
"main": "dist/cjs/index.js",
|