coles-solid-library 0.2.7 → 0.3.0
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/components/Checkbox/checkbox.d.ts +11 -0
- package/dist/components/Form/formGroup.d.ts +47 -7
- package/dist/components/Form/formHelp/formArray.d.ts +84 -7
- package/dist/components/Form/formHelp/models.d.ts +1 -1
- package/dist/components/Icon/icon.d.ts +2 -29
- package/dist/components/Input/inputV2.d.ts +12 -0
- package/dist/components/Menu/menu.d.ts +2 -0
- package/dist/components/Menu/menuContext.d.ts +14 -0
- package/dist/components/Menu/menuDropdown.d.ts +1 -1
- package/dist/components/Radio/radio.d.ts +13 -0
- package/dist/components/Radio/radioGroup.d.ts +23 -0
- package/dist/components/Select/select.component.d.ts +1 -9
- package/dist/components/Select/selectContext.d.ts +14 -0
- package/dist/components/TableV2/droprow.d.ts +1 -0
- package/dist/components/TableV2/formArrayTable.d.ts +18 -0
- package/dist/components/TableV2/table.d.ts +0 -1
- package/dist/components/TableV2/tableProvider.d.ts +4 -1
- package/dist/components/modal/popup.component.d.ts +24 -0
- package/dist/components/popup/popup.component.d.ts +2 -1
- package/dist/index.d.ts +8 -4
- package/dist/index.esm.js +1718 -839
- package/package.json +3 -1
- package/readme.md +1 -4
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coles-solid-library",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "A SolidJS mostly UI library",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
+
"sideEffects": false,
|
|
7
8
|
"files": [
|
|
8
9
|
"dist/styles.css",
|
|
9
10
|
"dist/index.esm.js",
|
|
@@ -38,6 +39,7 @@
|
|
|
38
39
|
"rollup": "^4.34.9",
|
|
39
40
|
"rollup-plugin-glob-import": "^0.5.0",
|
|
40
41
|
"rollup-plugin-postcss": "^4.0.2",
|
|
42
|
+
"rollup-plugin-string": "^3.0.0",
|
|
41
43
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
42
44
|
"tslib": "^2.8.1",
|
|
43
45
|
"typescript": "^5.8.2"
|
package/readme.md
CHANGED
|
@@ -15,13 +15,10 @@ npx degit solidjs/templates/ts <name>
|
|
|
15
15
|
npm i sass
|
|
16
16
|
```
|
|
17
17
|
## Installation
|
|
18
|
-
|
|
19
|
-
To install the library, use npm or yarn:
|
|
18
|
+
To install the library, use npm:
|
|
20
19
|
|
|
21
20
|
```bash
|
|
22
21
|
npm install coles-solid-library
|
|
23
|
-
# or
|
|
24
|
-
yarn add coles-solid-library
|
|
25
22
|
```
|
|
26
23
|
|
|
27
24
|
Import and add use the following line in App.tsx from the library.
|