Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 250039c

Browse files
committed
feat: remove internal icons logs
1 parent 7b2629c commit 250039c

File tree

16 files changed

+243
-211
lines changed

16 files changed

+243
-211
lines changed

@types/components.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* This is a generated file. Do not edit it's contents.
88
*
9-
* This file was generated on 2023-02-25T05:49:19.660Z
9+
* This file was generated on 2023-02-25T15:12:13.221Z
1010
*/
1111

1212
import { ChakraProps, chakra } from "@chakra-ui/vue-system"

components.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* This is a generated file. Do not edit it's contents.
88
*
9-
* This file was generated on 2023-02-25T05:49:19.660Z
9+
* This file was generated on 2023-02-25T15:12:13.221Z
1010
*/
1111

1212
import { ChakraProps, chakra } from "@chakra-ui/vue-system"

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@
8282
"@chakra-ui/utils": "2.0.15",
8383
"@chakra-ui/vue-auto-import": "workspace:*",
8484
"@chakra-ui/vue-next": "workspace:*",
85-
"@chakra-ui/vue-styled": "workspace:*",
8685
"@chakra-ui/vue-system": "workspace:*",
8786
"@chakra-ui/vue-test-utils": "workspace:*",
8887
"@changesets/changelog-github": "^0.3.0",

packages/c-accordion/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ export {
44
CAccordionIcon,
55
CAccordionItem,
66
CAccordionPanel,
7-
ExpandedValues,
87
} from "./accordion"
98

109
export type {
@@ -15,4 +14,5 @@ export type {
1514
CAccordionItemProps,
1615
CAccordionPanelProps,
1716
CAccordionProps,
17+
ExpandedValues,
1818
} from "./accordion"

packages/c-popper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"build:fast": "tsup",
3131
"types:check": "tsc --noEmit",
3232
"dev": "tsup --watch",
33-
"build:types": "tsup src --dts-only"
33+
"build:types": "tsup --dts-only"
3434
},
3535
"dependencies": {
3636
"@chakra-ui/utils": "2.0.15",

packages/c-popper/src/create-popper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
positionArrow,
1616
transformOrigin,
1717
} from "./modifiers"
18-
import { getEventListenerOptions } from "./utils"
18+
import { getEventListenerOptions } from "./dom.utils"
1919

2020
/* -------------------------------------------------------------------------------------------------
2121
We're initializing our own `createPopper` function with our opinionated defaults to
File renamed without changes.

packages/c-popper/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export { Placement, usePopper } from "./use-popper"
2-
export { popperCSSVars } from "./utils"
2+
export { popperCSSVars } from "./dom.utils"
33

44
export type { UsePopperOptions, UsePopperReturn } from "./use-popper"

packages/c-popper/src/modifiers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
getBoxShadow,
55
toTransformOrigin,
66
popperCSSVars as cssVars,
7-
} from "./utils"
7+
} from "./dom.utils"
88

99
/* -------------------------------------------------------------------------------------------------
1010
The match width modifier sets the popper width to match the reference.
@@ -30,7 +30,7 @@ export const matchWidth: Modifier<"matchWidth", any> = {
3030
/* -------------------------------------------------------------------------------------------------
3131
The transform origin modifier sets the css `transformOrigin` value of the popper
3232
based on the dynamic placement state of the popper.
33-
33+
3434
Useful when we need to animate/transition the popper.
3535
* -----------------------------------------------------------------------------------------------*/
3636

packages/system/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"@chakra-ui/styled-system": "2.5.1",
3030
"@chakra-ui/utils": "2.0.15",
3131
"@chakra-ui/vue-utils": "workspace:*",
32-
"@emotion/css": "^11.10.5",
3332
"@emotion/serialize": "1.1.1",
3433
"lodash.camelcase": "^4.3.0",
3534
"lodash.kebabcase": "^4.1.1",
@@ -41,6 +40,7 @@
4140
"vue": "3.2.47"
4241
},
4342
"peerDependencies": {
43+
"@emotion/css": "^11.10.0",
4444
"vue": "3.2.47"
4545
},
4646
"publishConfig": {

0 commit comments

Comments
 (0)