@kwantis-id3/frontend-library 0.12.1 → 0.13.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.
@@ -1 +1,2 @@
1
1
  export * from "./components";
2
+ export * from "./utils";
@@ -0,0 +1,2 @@
1
+ export { transientOptions } from "./transientOptions";
2
+ export { styled } from "./styled";
@@ -0,0 +1,2 @@
1
+ import styled from "@emotion/styled";
2
+ export { styled };
package/dist/index.d.ts CHANGED
@@ -2,7 +2,8 @@
2
2
  import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
3
3
  import * as React from 'react';
4
4
  import React__default from 'react';
5
- import { Interpolation } from '@emotion/styled';
5
+ import { Interpolation, CreateStyled } from '@emotion/styled';
6
+ export { default as styled } from '@emotion/styled';
6
7
  import { Theme } from '@emotion/react';
7
8
 
8
9
  interface Color {
@@ -124,4 +125,6 @@ type SliderProps = {
124
125
  };
125
126
  declare const Slider: (props: SliderProps) => JSX.Element;
126
127
 
127
- export { Accordion, AccordionProps, Button, ButtonProps, MultiSelect, MultiSelectProps, SingleSelect, SingleSelectProps, Slider, SliderProps, ThemeColors, ThemeColorsObject, ThemeContextProvider, useThemeContext };
128
+ declare const transientOptions: Parameters<CreateStyled>[1];
129
+
130
+ export { Accordion, AccordionProps, Button, ButtonProps, MultiSelect, MultiSelectProps, SingleSelect, SingleSelectProps, Slider, SliderProps, ThemeColors, ThemeColorsObject, ThemeContextProvider, transientOptions, useThemeContext };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kwantis-id3/frontend-library",
3
- "version": "0.12.1",
3
+ "version": "0.13.0",
4
4
  "description": "Kwantis frontend components collection",
5
5
  "author": {
6
6
  "name": "kwantis"
@@ -42,11 +42,11 @@
42
42
  "ts-jest": "^29.1.0",
43
43
  "ts-node": "^10.9.1",
44
44
  "tslib": "^2.5.0",
45
- "typescript": "^5.0.3"
45
+ "typescript": "^5.0.3",
46
+ "@emotion/react": "11.10.6",
47
+ "@emotion/styled": "11.10.6"
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",