@ah-automation.nl/component-lib 0.0.82 → 0.0.85
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/README.md +23 -0
- package/dist/components/sidebar-nav.d.ts.map +1 -1
- package/dist/components/ui/carousel.d.ts.map +1 -1
- package/dist/components/ui/data-table.d.ts +8 -1
- package/dist/components/ui/data-table.d.ts.map +1 -1
- package/dist/hooks/use-mobile.d.ts.map +1 -1
- package/dist/index.js +14218 -13577
- package/dist/styles.css +1 -1
- package/dist/types/phone-number-input.d.ts +2 -2
- package/dist/types/phone-number-input.d.ts.map +1 -1
- package/package.json +7 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type * as React from "react";
|
|
2
|
-
import type { Country,
|
|
2
|
+
import type { Country, Value } from "react-phone-number-input";
|
|
3
3
|
export type PhoneNumberInputCountry = Country;
|
|
4
|
-
export type PhoneNumberInputValue = Value
|
|
4
|
+
export type PhoneNumberInputValue = Value;
|
|
5
5
|
export type PhoneNumberInputValidationError = "invalid_phone_number";
|
|
6
6
|
export type PhoneNumberInputChangeDetails = {
|
|
7
7
|
callingCode: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"phone-number-input.d.ts","sourceRoot":"","sources":["../../src/types/phone-number-input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AACpC,OAAO,KAAK,EAAE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"phone-number-input.d.ts","sourceRoot":"","sources":["../../src/types/phone-number-input.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AACpC,OAAO,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AAE/D,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC;AAC9C,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC;AAC1C,MAAM,MAAM,+BAA+B,GAAG,sBAAsB,CAAC;AACrE,MAAM,MAAM,6BAA6B,GAAG;IAC1C,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,uBAAuB,CAAC;IACjC,KAAK,CAAC,EAAE,+BAA+B,CAAC;IACxC,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,qBAAqB,CAAC;CAC/B,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,IAAI,CACtC,KAAK,CAAC,wBAAwB,CAAC,OAAO,CAAC,EACvC,WAAW,GAAG,cAAc,GAAG,UAAU,GAAG,MAAM,GAAG,OAAO,CAC7D,GAAG;IACF,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,uBAAuB,EAAE,CAAC;IACtC,OAAO,CAAC,EAAE,uBAAuB,CAAC;IAClC,cAAc,CAAC,EAAE,uBAAuB,CAAC;IACzC,YAAY,CAAC,EAAE,qBAAqB,CAAC;IACrC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,eAAe,CAAC,EAAE,CAChB,OAAO,EAAE,uBAAuB,EAChC,OAAO,EAAE,6BAA6B,KACnC,IAAI,CAAC;IACV,aAAa,CAAC,EAAE,CACd,KAAK,EAAE,qBAAqB,GAAG,SAAS,EACxC,OAAO,EAAE,6BAA6B,KACnC,IAAI,CAAC;IACV,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,KAAK,CAAC,EAAE,qBAAqB,CAAC;CAC/B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ah-automation.nl/component-lib",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.85",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
},
|
|
16
16
|
"./styles.css": "./dist/styles.css"
|
|
17
17
|
},
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"registry": "https://registry.npmjs.org/",
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
18
22
|
"scripts": {
|
|
19
23
|
"dev": "vite",
|
|
20
24
|
"typecheck": "tsc -b",
|
|
@@ -23,8 +27,9 @@
|
|
|
23
27
|
"lint": "eslint .",
|
|
24
28
|
"lint:fix": "eslint . --fix",
|
|
25
29
|
"format": "prettier --write .",
|
|
30
|
+
"format:check": "prettier --check .",
|
|
26
31
|
"preview": "vite preview",
|
|
27
|
-
"check": "npm run lint && npm run typecheck && npm run format"
|
|
32
|
+
"check": "npm run lint && npm run typecheck && npm run format:check"
|
|
28
33
|
},
|
|
29
34
|
"peerDependencies": {
|
|
30
35
|
"react": "^19.2.4",
|