@powerhousedao/design-system 6.0.0-dev.40 → 6.0.0-dev.42
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/src/connect/components/toggle/toggle.stories.d.ts +13 -13
- package/dist/src/connect/constants/icons.js +3 -3
- package/dist/src/connect/constants/icons.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +28 -27
- /package/{assets → dist/assets}/connect-loader.mp4 +0 -0
- /package/{assets → dist/assets}/connect.png +0 -0
- /package/{assets → dist/assets}/home-bg.avif +0 -0
- /package/{assets → dist/assets}/home-bg.png +0 -0
- /package/{assets → dist/assets}/icons/budget.png +0 -0
- /package/{assets → dist/assets}/icons/global.png +0 -0
- /package/{assets → dist/assets}/icons/legal.png +0 -0
- /package/{assets → dist/assets}/icons/profile.png +0 -0
- /package/{assets → dist/assets}/icons/rwa-report.png +0 -0
- /package/{assets → dist/assets}/icons/template.png +0 -0
- /package/{assets → dist/assets}/powerhouse-rounded.png +0 -0
- /package/{assets → dist/assets}/renown-hover.png +0 -0
- /package/{assets → dist/assets}/renown-short-hover.png +0 -0
- /package/{assets → dist/assets}/renown-short.png +0 -0
- /package/{assets → dist/assets}/renown.png +0 -0
|
@@ -21,6 +21,8 @@ declare const meta: {
|
|
|
21
21
|
lang?: string | undefined | undefined;
|
|
22
22
|
max?: number | string | undefined | undefined;
|
|
23
23
|
min?: number | string | undefined | undefined;
|
|
24
|
+
nonce?: string | undefined | undefined;
|
|
25
|
+
part?: string | undefined | undefined;
|
|
24
26
|
role?: import("react").AriaRole | undefined;
|
|
25
27
|
tabIndex?: number | undefined | undefined;
|
|
26
28
|
"aria-activedescendant"?: string | undefined | undefined;
|
|
@@ -96,18 +98,18 @@ declare const meta: {
|
|
|
96
98
|
onFocusCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
97
99
|
onBlur?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
98
100
|
onBlurCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
99
|
-
onChange?: import("react").ChangeEventHandler<HTMLInputElement> | undefined;
|
|
100
|
-
onChangeCapture?: import("react").
|
|
101
|
+
onChange?: import("react").ChangeEventHandler<HTMLInputElement, HTMLInputElement> | undefined;
|
|
102
|
+
onChangeCapture?: import("react").ChangeEventHandler<HTMLInputElement, Element> | undefined;
|
|
101
103
|
onBeforeInput?: import("react").InputEventHandler<HTMLInputElement> | undefined;
|
|
102
|
-
onBeforeInputCapture?: import("react").
|
|
103
|
-
onInput?: import("react").
|
|
104
|
-
onInputCapture?: import("react").
|
|
105
|
-
onReset?: import("react").
|
|
106
|
-
onResetCapture?: import("react").
|
|
107
|
-
onSubmit?: import("react").
|
|
108
|
-
onSubmitCapture?: import("react").
|
|
109
|
-
onInvalid?: import("react").
|
|
110
|
-
onInvalidCapture?: import("react").
|
|
104
|
+
onBeforeInputCapture?: import("react").InputEventHandler<HTMLInputElement> | undefined;
|
|
105
|
+
onInput?: import("react").InputEventHandler<HTMLInputElement> | undefined;
|
|
106
|
+
onInputCapture?: import("react").InputEventHandler<HTMLInputElement> | undefined;
|
|
107
|
+
onReset?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
108
|
+
onResetCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
109
|
+
onSubmit?: import("react").SubmitEventHandler<HTMLInputElement> | undefined;
|
|
110
|
+
onSubmitCapture?: import("react").SubmitEventHandler<HTMLInputElement> | undefined;
|
|
111
|
+
onInvalid?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
112
|
+
onInvalidCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
111
113
|
onLoad?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
112
114
|
onLoadCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
113
115
|
onError?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
@@ -268,7 +270,6 @@ declare const meta: {
|
|
|
268
270
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
269
271
|
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
270
272
|
hidden?: boolean | undefined | undefined;
|
|
271
|
-
nonce?: string | undefined | undefined;
|
|
272
273
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
273
274
|
translate?: "yes" | "no" | undefined | undefined;
|
|
274
275
|
radioGroup?: string | undefined | undefined;
|
|
@@ -300,7 +301,6 @@ declare const meta: {
|
|
|
300
301
|
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
301
302
|
is?: string | undefined | undefined;
|
|
302
303
|
exportparts?: string | undefined | undefined;
|
|
303
|
-
part?: string | undefined | undefined;
|
|
304
304
|
required?: boolean | undefined | undefined;
|
|
305
305
|
placeholder?: string | undefined | undefined;
|
|
306
306
|
maxLength?: number | undefined | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BUDGET, DEFAULT, MAKERDAO_RWA_PORTFOLIO } from "./documents.js";
|
|
2
|
-
const BudgetStatementImg = new URL("
|
|
3
|
-
const MakerdaoRWAPortfolioImg = new URL("
|
|
4
|
-
const DefaultImg = new URL("
|
|
2
|
+
const BudgetStatementImg = new URL("../../../assets/icons/budget.png", import.meta.url).href;
|
|
3
|
+
const MakerdaoRWAPortfolioImg = new URL("../../../assets/icons/rwa-report.png", import.meta.url).href;
|
|
4
|
+
const DefaultImg = new URL("../../../assets/icons/template.png", import.meta.url).href;
|
|
5
5
|
export const iconMap = {
|
|
6
6
|
[BUDGET]: BudgetStatementImg,
|
|
7
7
|
[DEFAULT]: DefaultImg,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icons.js","sourceRoot":"","sources":["../../../../src/connect/constants/icons.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAEzE,MAAM,kBAAkB,GAAG,IAAI,GAAG,CAChC,
|
|
1
|
+
{"version":3,"file":"icons.js","sourceRoot":"","sources":["../../../../src/connect/constants/icons.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAEzE,MAAM,kBAAkB,GAAG,IAAI,GAAG,CAChC,kCAAkC,EAClC,MAAM,CAAC,IAAI,CAAC,GAAG,CAChB,CAAC,IAAI,CAAC;AACP,MAAM,uBAAuB,GAAG,IAAI,GAAG,CACrC,sCAAsC,EACtC,MAAM,CAAC,IAAI,CAAC,GAAG,CAChB,CAAC,IAAI,CAAC;AACP,MAAM,UAAU,GAAG,IAAI,GAAG,CACxB,oCAAoC,EACpC,MAAM,CAAC,IAAI,CAAC,GAAG,CAChB,CAAC,IAAI,CAAC;AAEP,MAAM,CAAC,MAAM,OAAO,GAAkC;IACpD,CAAC,MAAM,CAAC,EAAE,kBAAkB;IAC5B,CAAC,OAAO,CAAC,EAAE,UAAU;IACrB,CAAC,sBAAsB,CAAC,EAAE,uBAAuB;CAClD,CAAC"}
|
package/dist/style.css
CHANGED