Skip to content

Commit b4015bc

Browse files
committed
fix(dialog): fix conflict css with pdfjs
1 parent a3adf3a commit b4015bc

File tree

11 files changed

+37
-29
lines changed

11 files changed

+37
-29
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@privyid/design-system",
3-
"version": "1.0.0-rc.9",
3+
"version": "1.0.0-rc.10",
44
"packageManager": "[email protected]",
55
"private": true,
66
"type": "module",

packages/browserslist-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/browserslist-config",
33
"description": "Browserslist shareable config for Persona project",
4-
"version": "1.0.0-rc.9",
4+
"version": "1.0.0-rc.10",
55
"packageManager": "[email protected]",
66
"license": "MIT",
77
"repository": {

packages/eslint-config-persona/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/eslint-config-persona",
33
"description": "Eslint shareable config for Persona project",
4-
"version": "1.0.0-rc.9",
4+
"version": "1.0.0-rc.10",
55
"packageManager": "[email protected]",
66
"license": "MIT",
77
"repository": {

packages/persona-icon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/persona-icon",
33
"description": "Persona icon package",
4-
"version": "1.0.0-rc.9",
4+
"version": "1.0.0-rc.10",
55
"packageManager": "[email protected]",
66
"type": "module",
77
"main": "./dist/module.cjs",

packages/persona-ilustration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/persona-ilustration",
33
"description": "Persona ilustration package",
4-
"version": "1.0.0-rc.9",
4+
"version": "1.0.0-rc.10",
55
"packageManager": "[email protected]",
66
"type": "module",
77
"main": "./dist/module.cjs",

packages/persona/package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/persona",
33
"description": "Persona core package",
4-
"version": "1.0.0-rc.9",
4+
"version": "1.0.0-rc.10",
55
"license": "MIT",
66
"repository": {
77
"url": "https://github.com/privy-open-source/design-system.git",
@@ -23,8 +23,14 @@
2323
"require": "./dist/types.d.ts"
2424
}
2525
},
26-
"./core/*": "./dist/core/*",
27-
"./directive/*": "./dist/directive/*",
26+
"./core": {
27+
"import": "./dist/core/index.mjs",
28+
"types": "./dist/core/index.d.ts"
29+
},
30+
"./directive": {
31+
"import": "./dist/directive/index.mjs",
32+
"types": "./dist/directive/index.d.ts"
33+
},
2834
"./components/*": "./dist/components/*"
2935
},
3036
"main": "./dist/module.cjs",

packages/tailwind-animation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/tailwind-animation",
33
"description": "Collection animation class for vue `<transition>`",
4-
"version": "1.0.0-rc.9",
4+
"version": "1.0.0-rc.10",
55
"packageManager": "[email protected]",
66
"license": "MIT",
77
"repository": {

packages/tailwind-extended/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/tailwind-extended",
33
"description": "Add missing tailwind utilities",
4-
"version": "1.0.0-rc.9",
4+
"version": "1.0.0-rc.10",
55
"packageManager": "[email protected]",
66
"license": "MIT",
77
"repository": {

packages/tailwind-preset/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/tailwind-preset",
33
"description": "Tailwind preset for Persona project",
4-
"version": "1.0.0-rc.9",
4+
"version": "1.0.0-rc.10",
55
"packageManager": "[email protected]",
66
"license": "MIT",
77
"repository": {

src/components/dialog/Dialog.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
:key="id"
55
v-model="modal"
66
v-bind="context.attrs"
7-
class="dialog"
7+
class="modal-dialog"
88
:title="context.title"
99
:size="context.size"
1010
:centered="context.centered"
@@ -15,7 +15,7 @@
1515
@close="onCancel">
1616
<template #header>
1717
<template v-if="dialogIcon">
18-
<div class="dialog__icon">
18+
<div class="modal-dialog__icon">
1919
<component
2020
:is="dialogIcon"
2121
:class="context.iconClass"
@@ -139,7 +139,7 @@ defineExpose({
139139
</script>
140140

141141
<style lang="postcss">
142-
.dialog {
142+
.modal-dialog {
143143
--p-modal-z-index: theme(zIndex.dialog);
144144
145145
&__icon {

0 commit comments

Comments
 (0)