@helpdice/theme 1.0.1 → 1.0.3
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/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/package.json +8 -4
package/dist/index.d.ts
CHANGED
|
@@ -19,4 +19,5 @@ export type { HighlightProps } from './shared/highlight';
|
|
|
19
19
|
export { default as Ellipsis } from './shared/ellipsis';
|
|
20
20
|
export { default as Expand } from './shared/expand';
|
|
21
21
|
export { default as Dropdown } from './shared/dropdown';
|
|
22
|
+
export { default as CssTransition } from './shared/css-transition';
|
|
22
23
|
export { default as Backdrop } from './shared/backdrop';
|
package/dist/index.js
CHANGED
|
@@ -2092,6 +2092,7 @@ Backdrop.displayName = 'Backdrop';
|
|
|
2092
2092
|
|
|
2093
2093
|
exports.Backdrop = Backdrop;
|
|
2094
2094
|
exports.CssBaseline = MemoCssBaseline;
|
|
2095
|
+
exports.CssTransition = CssTransition;
|
|
2095
2096
|
exports.Dropdown = Dropdown;
|
|
2096
2097
|
exports.Ellipsis = ellipsis;
|
|
2097
2098
|
exports.Expand = Expand;
|
package/esm/index.d.ts
CHANGED
|
@@ -19,4 +19,5 @@ export type { HighlightProps } from './shared/highlight';
|
|
|
19
19
|
export { default as Ellipsis } from './shared/ellipsis';
|
|
20
20
|
export { default as Expand } from './shared/expand';
|
|
21
21
|
export { default as Dropdown } from './shared/dropdown';
|
|
22
|
+
export { default as CssTransition } from './shared/css-transition';
|
|
22
23
|
export { default as Backdrop } from './shared/backdrop';
|
package/esm/index.js
CHANGED
|
@@ -15,4 +15,5 @@ export { default as Highlight } from './shared/highlight';
|
|
|
15
15
|
export { default as Ellipsis } from './shared/ellipsis';
|
|
16
16
|
export { default as Expand } from './shared/expand';
|
|
17
17
|
export { default as Dropdown } from './shared/dropdown';
|
|
18
|
+
export { default as CssTransition } from './shared/css-transition';
|
|
18
19
|
export { default as Backdrop } from './shared/backdrop';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helpdice/theme",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "esm/index.d.ts",
|
|
6
6
|
"unpkg": "dist/index.min.js",
|
|
@@ -24,17 +24,21 @@
|
|
|
24
24
|
"build:after": "node scripts/move-built-in.js",
|
|
25
25
|
"build:types": "tsc -p ./scripts & tsc -p ./scripts --outDir ./esm",
|
|
26
26
|
"build:package": "yarn build:rollup && yarn build:babel && yarn build:types && yarn build:after",
|
|
27
|
-
"release": "yarn publish --access public --non-interactive"
|
|
27
|
+
"release": "yarn publish --access public --non-interactive",
|
|
28
|
+
"release:github": "yarn publish --registry=https://npm.pkg.github.com"
|
|
28
29
|
},
|
|
29
30
|
"license": "MIT",
|
|
30
31
|
"description": "Theme provider for Helpdice UI library.",
|
|
31
32
|
"homepage": "https://ui.helpdice.com",
|
|
32
33
|
"bugs": {
|
|
33
|
-
"url": "https://github.com/helpdice/
|
|
34
|
+
"url": "https://github.com/helpdice/theme/issues/new/choose"
|
|
34
35
|
},
|
|
35
36
|
"repository": {
|
|
36
37
|
"type": "git",
|
|
37
|
-
"url": "https://github.com/helpdice/
|
|
38
|
+
"url": "https://github.com/helpdice/theme"
|
|
39
|
+
},
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public"
|
|
38
42
|
},
|
|
39
43
|
"prettier": "@helpdice/prettier-config",
|
|
40
44
|
"keywords": [
|