@ed.yakovich/example-component-library-equipment-summary 1.0.1
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/component/context/index.js +10 -0
- package/dist/component/index.js +6 -0
- package/dist/component/types/index.js +1 -0
- package/dist/index-0d8e0844-BJzWsYCM.js +7403 -0
- package/dist/index-DxRZ6prf.js +29198 -0
- package/dist/index-b30029d4-hGeLy_--.js +12 -0
- package/dist/index-e6818ded-r_t6ryaW.js +57 -0
- package/dist/index.esm-322571ff-D1REhsOg.js +41 -0
- package/dist/lib/component/context/index.d.ts +10 -0
- package/dist/lib/component/index.d.ts +2 -0
- package/dist/lib/component/types/index.d.ts +14 -0
- package/dist/lib/main.d.ts +3 -0
- package/dist/main.js +6 -0
- package/dist/prism-accordion.entry-BxELizsS.js +51 -0
- package/dist/prism-avatar_2.entry-DNiQeemV.js +68 -0
- package/dist/prism-badge.entry-BZ3qPCmg.js +58 -0
- package/dist/prism-banner.entry-CQFUsFct.js +82 -0
- package/dist/prism-breadcrumb.entry-D3f9eccN.js +33 -0
- package/dist/prism-button_2.entry-BeBH5mn0.js +110 -0
- package/dist/prism-card.entry-BtruBogB.js +119 -0
- package/dist/prism-carousel.entry-DGsHMWMm.js +3111 -0
- package/dist/prism-checkbox-group.entry-8qXingIs.js +62 -0
- package/dist/prism-checkbox.entry-BgBJyUsA.js +99 -0
- package/dist/prism-data-table.entry-BqDb3MTy.js +10475 -0
- package/dist/prism-datepicker.entry-D_TgrYQo.js +249 -0
- package/dist/prism-form.entry-DtZpPyt1.js +42 -0
- package/dist/prism-grid.entry-B09w_u17.js +28 -0
- package/dist/prism-header.entry-Dg1LLjAa.js +202 -0
- package/dist/prism-hero.entry-CxCl08Ny.js +23 -0
- package/dist/prism-icon_2.entry-C9c3WUVv.js +118 -0
- package/dist/prism-image.entry-LtD_rMcm.js +38 -0
- package/dist/prism-input-file.entry-wHvgU7qk.js +119 -0
- package/dist/prism-input-otp.entry-DslD9N9q.js +63 -0
- package/dist/prism-input-text.entry-DXD4hb3c.js +228 -0
- package/dist/prism-input-textarea.entry-BKa_ksFS.js +140 -0
- package/dist/prism-layout.entry-DCsBmhx4.js +20 -0
- package/dist/prism-lineitem.entry-BM1G7KrG.js +44 -0
- package/dist/prism-menu.entry-BOHwsSEF.js +231 -0
- package/dist/prism-modal.entry-lNtEVneh.js +94 -0
- package/dist/prism-pagination.entry-CquOlgO0.js +60 -0
- package/dist/prism-popover.entry-46M1LmDp.js +1013 -0
- package/dist/prism-popper.entry-Dva30zBQ.js +959 -0
- package/dist/prism-progress.entry-DMMVFWhO.js +79 -0
- package/dist/prism-radio-group.entry-CMbyeNEC.js +66 -0
- package/dist/prism-radio.entry-8eXYAxvv.js +101 -0
- package/dist/prism-select.entry-u6Q0TwuA.js +230 -0
- package/dist/prism-switch.entry-B0Fg-f-f.js +95 -0
- package/dist/prism-tab.entry-Cb1TgCNq.js +20 -0
- package/dist/prism-tabs.entry-C8aDT5py.js +70 -0
- package/dist/prism-tooltip.entry-BRIs8zP0.js +52 -0
- package/dist/prism-typeahead.entry-DPz5X3J9.js +1234 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ed.yakovich/example-component-library-equipment-summary",
|
|
3
|
+
"author": "Ed Yakovich",
|
|
4
|
+
"private": false,
|
|
5
|
+
"version": "1.0.1",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/lib/main.d.ts",
|
|
10
|
+
"default": "./dist/main.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"sideEffects": [
|
|
17
|
+
"**/*.css"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"build": "tsc -b ./tsconfig.lib.json && vite build",
|
|
22
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
23
|
+
"preview": "vite preview"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
27
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
28
|
+
"@prism-ui/react": "^7.30.2"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@types/node": "^22.5.4",
|
|
32
|
+
"@types/react": "^18.3.5",
|
|
33
|
+
"@types/react-dom": "^18.3.0",
|
|
34
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
35
|
+
"@typescript-eslint/parser": "^7.18.0",
|
|
36
|
+
"@vitejs/plugin-react": "^4.3.1",
|
|
37
|
+
"ajv": "^8.17.1",
|
|
38
|
+
"eslint": "^8.57.0",
|
|
39
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
40
|
+
"eslint-plugin-react-refresh": "^0.4.11",
|
|
41
|
+
"glob": "^11.0.0",
|
|
42
|
+
"react": "^18.3.1",
|
|
43
|
+
"react-dom": "^18.3.1",
|
|
44
|
+
"typescript": "^5.6.2",
|
|
45
|
+
"vite": "^5.4.4",
|
|
46
|
+
"vite-plugin-dts": "^4.2.1",
|
|
47
|
+
"vite-plugin-lib-inject-css": "^2.1.1"
|
|
48
|
+
}
|
|
49
|
+
}
|