phx-react 1.3.126 → 1.3.129
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/cjs/components/Table/Table.d.ts +3 -1
- package/dist/cjs/components/Table/Table.js +25 -3
- package/dist/cjs/components/Table/Table.js.map +1 -1
- package/dist/cjs/components/TextEditor/index.d.ts +1 -0
- package/dist/cjs/components/TextEditor/index.js +5 -0
- package/dist/cjs/components/TextEditor/index.js.map +1 -0
- package/dist/cjs/components/TextEditor/plugins/AutoLinkPlugin.d.ts +2 -0
- package/dist/cjs/components/TextEditor/plugins/AutoLinkPlugin.js +32 -0
- package/dist/cjs/components/TextEditor/plugins/AutoLinkPlugin.js.map +1 -0
- package/dist/cjs/components/TextEditor/plugins/CodeHighlightPlugin.d.ts +1 -0
- package/dist/cjs/components/TextEditor/plugins/CodeHighlightPlugin.js +12 -0
- package/dist/cjs/components/TextEditor/plugins/CodeHighlightPlugin.js.map +1 -0
- package/dist/cjs/components/TextEditor/plugins/ListMaxIndentLevelPlugin.d.ts +1 -0
- package/dist/cjs/components/TextEditor/plugins/ListMaxIndentLevelPlugin.js +46 -0
- package/dist/cjs/components/TextEditor/plugins/ListMaxIndentLevelPlugin.js.map +1 -0
- package/dist/cjs/components/TextEditor/plugins/ToolbarPlugin.d.ts +2 -0
- package/dist/cjs/components/TextEditor/plugins/ToolbarPlugin.js +460 -0
- package/dist/cjs/components/TextEditor/plugins/ToolbarPlugin.js.map +1 -0
- package/dist/cjs/components/TextEditor/textEditor.d.ts +2 -0
- package/dist/cjs/components/TextEditor/textEditor.js +86 -0
- package/dist/cjs/components/TextEditor/textEditor.js.map +1 -0
- package/dist/cjs/components/TextEditor/themes/ExampleTheme.d.ts +68 -0
- package/dist/cjs/components/TextEditor/themes/ExampleTheme.js +71 -0
- package/dist/cjs/components/TextEditor/themes/ExampleTheme.js.map +1 -0
- package/dist/cjs/index.d.ts +2 -1
- package/dist/cjs/index.js +3 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/components/Table/Table.d.ts +3 -1
- package/dist/esm/components/Table/Table.js +25 -3
- package/dist/esm/components/Table/Table.js.map +1 -1
- package/dist/esm/components/TextEditor/index.d.ts +1 -0
- package/dist/esm/components/TextEditor/index.js +2 -0
- package/dist/esm/components/TextEditor/index.js.map +1 -0
- package/dist/esm/components/TextEditor/plugins/AutoLinkPlugin.d.ts +2 -0
- package/dist/esm/components/TextEditor/plugins/AutoLinkPlugin.js +28 -0
- package/dist/esm/components/TextEditor/plugins/AutoLinkPlugin.js.map +1 -0
- package/dist/esm/components/TextEditor/plugins/CodeHighlightPlugin.d.ts +1 -0
- package/dist/esm/components/TextEditor/plugins/CodeHighlightPlugin.js +9 -0
- package/dist/esm/components/TextEditor/plugins/CodeHighlightPlugin.js.map +1 -0
- package/dist/esm/components/TextEditor/plugins/ListMaxIndentLevelPlugin.d.ts +1 -0
- package/dist/esm/components/TextEditor/plugins/ListMaxIndentLevelPlugin.js +43 -0
- package/dist/esm/components/TextEditor/plugins/ListMaxIndentLevelPlugin.js.map +1 -0
- package/dist/esm/components/TextEditor/plugins/ToolbarPlugin.d.ts +2 -0
- package/dist/esm/components/TextEditor/plugins/ToolbarPlugin.js +456 -0
- package/dist/esm/components/TextEditor/plugins/ToolbarPlugin.js.map +1 -0
- package/dist/esm/components/TextEditor/textEditor.d.ts +2 -0
- package/dist/esm/components/TextEditor/textEditor.js +81 -0
- package/dist/esm/components/TextEditor/textEditor.js.map +1 -0
- package/dist/esm/components/TextEditor/themes/ExampleTheme.d.ts +68 -0
- package/dist/esm/components/TextEditor/themes/ExampleTheme.js +69 -0
- package/dist/esm/components/TextEditor/themes/ExampleTheme.js.map +1 -0
- package/dist/esm/index.d.ts +2 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +16 -15
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var exampleTheme = {
|
|
2
|
+
ltr: 'ltr',
|
|
3
|
+
rtl: 'rtl',
|
|
4
|
+
placeholder: 'editor-placeholder',
|
|
5
|
+
paragraph: 'editor-paragraph',
|
|
6
|
+
quote: 'editor-quote',
|
|
7
|
+
heading: {
|
|
8
|
+
h1: 'editor-heading-h1',
|
|
9
|
+
h2: 'editor-heading-h2',
|
|
10
|
+
h3: 'editor-heading-h3',
|
|
11
|
+
h4: 'editor-heading-h4',
|
|
12
|
+
h5: 'editor-heading-h5'
|
|
13
|
+
},
|
|
14
|
+
list: {
|
|
15
|
+
nested: {
|
|
16
|
+
listitem: 'editor-nested-listitem'
|
|
17
|
+
},
|
|
18
|
+
ol: 'editor-list-ol',
|
|
19
|
+
ul: 'editor-list-ul',
|
|
20
|
+
listitem: 'editor-listitem'
|
|
21
|
+
},
|
|
22
|
+
image: 'editor-image',
|
|
23
|
+
link: 'editor-link',
|
|
24
|
+
text: {
|
|
25
|
+
bold: 'editor-text-bold',
|
|
26
|
+
italic: 'editor-text-italic',
|
|
27
|
+
overflowed: 'editor-text-overflowed',
|
|
28
|
+
hashtag: 'editor-text-hashtag',
|
|
29
|
+
underline: 'editor-text-underline',
|
|
30
|
+
strikethrough: 'editor-text-strikethrough',
|
|
31
|
+
underlineStrikethrough: 'editor-text-underlineStrikethrough',
|
|
32
|
+
code: 'editor-text-code'
|
|
33
|
+
},
|
|
34
|
+
code: 'editor-code',
|
|
35
|
+
codeHighlight: {
|
|
36
|
+
atrule: 'editor-tokenAttr',
|
|
37
|
+
attr: 'editor-tokenAttr',
|
|
38
|
+
boolean: 'editor-tokenProperty',
|
|
39
|
+
builtin: 'editor-tokenSelector',
|
|
40
|
+
cdata: 'editor-tokenComment',
|
|
41
|
+
char: 'editor-tokenSelector',
|
|
42
|
+
"class": 'editor-tokenFunction',
|
|
43
|
+
'class-name': 'editor-tokenFunction',
|
|
44
|
+
comment: 'editor-tokenComment',
|
|
45
|
+
constant: 'editor-tokenProperty',
|
|
46
|
+
deleted: 'editor-tokenProperty',
|
|
47
|
+
doctype: 'editor-tokenComment',
|
|
48
|
+
entity: 'editor-tokenOperator',
|
|
49
|
+
"function": 'editor-tokenFunction',
|
|
50
|
+
important: 'editor-tokenVariable',
|
|
51
|
+
inserted: 'editor-tokenSelector',
|
|
52
|
+
keyword: 'editor-tokenAttr',
|
|
53
|
+
namespace: 'editor-tokenVariable',
|
|
54
|
+
number: 'editor-tokenProperty',
|
|
55
|
+
operator: 'editor-tokenOperator',
|
|
56
|
+
prolog: 'editor-tokenComment',
|
|
57
|
+
property: 'editor-tokenProperty',
|
|
58
|
+
punctuation: 'editor-tokenPunctuation',
|
|
59
|
+
regex: 'editor-tokenVariable',
|
|
60
|
+
selector: 'editor-tokenSelector',
|
|
61
|
+
string: 'editor-tokenSelector',
|
|
62
|
+
symbol: 'editor-tokenProperty',
|
|
63
|
+
tag: 'editor-tokenProperty',
|
|
64
|
+
url: 'editor-tokenOperator',
|
|
65
|
+
variable: 'editor-tokenVariable'
|
|
66
|
+
}
|
|
67
|
+
};
|
|
68
|
+
export default exampleTheme;
|
|
69
|
+
//# sourceMappingURL=ExampleTheme.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ExampleTheme.js","sourceRoot":"","sources":["../../../../../src/components/TextEditor/themes/ExampleTheme.ts"],"names":[],"mappings":"AAAA,IAAM,YAAY,GAAG;IACnB,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;IACV,WAAW,EAAE,oBAAoB;IACjC,SAAS,EAAE,kBAAkB;IAC7B,KAAK,EAAE,cAAc;IACrB,OAAO,EAAE;QACP,EAAE,EAAE,mBAAmB;QACvB,EAAE,EAAE,mBAAmB;QACvB,EAAE,EAAE,mBAAmB;QACvB,EAAE,EAAE,mBAAmB;QACvB,EAAE,EAAE,mBAAmB;KACxB;IACD,IAAI,EAAE;QACJ,MAAM,EAAE;YACN,QAAQ,EAAE,wBAAwB;SACnC;QACD,EAAE,EAAE,gBAAgB;QACpB,EAAE,EAAE,gBAAgB;QACpB,QAAQ,EAAE,iBAAiB;KAC5B;IACD,KAAK,EAAE,cAAc;IACrB,IAAI,EAAE,aAAa;IACnB,IAAI,EAAE;QACJ,IAAI,EAAE,kBAAkB;QACxB,MAAM,EAAE,oBAAoB;QAC5B,UAAU,EAAE,wBAAwB;QACpC,OAAO,EAAE,qBAAqB;QAC9B,SAAS,EAAE,uBAAuB;QAClC,aAAa,EAAE,2BAA2B;QAC1C,sBAAsB,EAAE,oCAAoC;QAC5D,IAAI,EAAE,kBAAkB;KACzB;IACD,IAAI,EAAE,aAAa;IACnB,aAAa,EAAE;QACb,MAAM,EAAE,kBAAkB;QAC1B,IAAI,EAAE,kBAAkB;QACxB,OAAO,EAAE,sBAAsB;QAC/B,OAAO,EAAE,sBAAsB;QAC/B,KAAK,EAAE,qBAAqB;QAC5B,IAAI,EAAE,sBAAsB;QAC5B,OAAK,EAAE,sBAAsB;QAC7B,YAAY,EAAE,sBAAsB;QACpC,OAAO,EAAE,qBAAqB;QAC9B,QAAQ,EAAE,sBAAsB;QAChC,OAAO,EAAE,sBAAsB;QAC/B,OAAO,EAAE,qBAAqB;QAC9B,MAAM,EAAE,sBAAsB;QAC9B,UAAQ,EAAE,sBAAsB;QAChC,SAAS,EAAE,sBAAsB;QACjC,QAAQ,EAAE,sBAAsB;QAChC,OAAO,EAAE,kBAAkB;QAC3B,SAAS,EAAE,sBAAsB;QACjC,MAAM,EAAE,sBAAsB;QAC9B,QAAQ,EAAE,sBAAsB;QAChC,MAAM,EAAE,qBAAqB;QAC7B,QAAQ,EAAE,sBAAsB;QAChC,WAAW,EAAE,yBAAyB;QACtC,KAAK,EAAE,sBAAsB;QAC7B,QAAQ,EAAE,sBAAsB;QAChC,MAAM,EAAE,sBAAsB;QAC9B,MAAM,EAAE,sBAAsB;QAC9B,GAAG,EAAE,sBAAsB;QAC3B,GAAG,EAAE,sBAAsB;QAC3B,QAAQ,EAAE,sBAAsB;KACjC;CACF,CAAA;AAED,eAAe,YAAY,CAAA"}
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -29,4 +29,5 @@ import { PHXBanner } from './components/Banner';
|
|
|
29
29
|
import { PHXButtonGroup } from './components/ButtonGroup';
|
|
30
30
|
import { PHXCombobox } from './components/Combobox';
|
|
31
31
|
import { PHXHorizontalStack } from './components/HorizontalStack';
|
|
32
|
-
|
|
32
|
+
import { PHXTextEditor } from './components/TextEditor';
|
|
33
|
+
export { MyCounter, PHXButton, PHXCard, PHXSpinner, PHXMainWrap, PHXFormWrap, PHXHeaderBar, PHXTable, PHXInput, PHXSelect, PHXRadio, PHXCheckbox, PHXFormStep, PHXNotifications, PHXStep, PHXSkeleton, PHXFuncGetLoggedInfo, PHXClientQuery, PHXClientMutation, PHXTextarea, PHXModal, PHXTabs, PHXChoiceList, PHXDescriptionLists, PHXBadge, PHXLogin, PHXBanner, PHXButtonGroup, PHXCombobox, PHXFormLayout, PHXHorizontalStack, PHXTextEditor, };
|
package/dist/esm/index.js
CHANGED
|
@@ -29,5 +29,6 @@ import { PHXBanner } from './components/Banner';
|
|
|
29
29
|
import { PHXButtonGroup } from './components/ButtonGroup';
|
|
30
30
|
import { PHXCombobox } from './components/Combobox';
|
|
31
31
|
import { PHXHorizontalStack } from './components/HorizontalStack';
|
|
32
|
-
|
|
32
|
+
import { PHXTextEditor } from './components/TextEditor';
|
|
33
|
+
export { MyCounter, PHXButton, PHXCard, PHXSpinner, PHXMainWrap, PHXFormWrap, PHXHeaderBar, PHXTable, PHXInput, PHXSelect, PHXRadio, PHXCheckbox, PHXFormStep, PHXNotifications, PHXStep, PHXSkeleton, PHXFuncGetLoggedInfo, PHXClientQuery, PHXClientMutation, PHXTextarea, PHXModal, PHXTabs, PHXChoiceList, PHXDescriptionLists, PHXBadge, PHXLogin, PHXBanner, PHXButtonGroup, PHXCombobox, PHXFormLayout, PHXHorizontalStack, PHXTextEditor, };
|
|
33
34
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAA;AAC3C,OAAO,SAAS,MAAM,kBAAkB,CAAA;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;AAC/C,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAA;AAC3C,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;AAC/C,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAA;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,oBAAoB,MAAM,gCAAgC,CAAA;AACjE,OAAO,cAAc,MAAM,iCAAiC,CAAA;AAC5D,OAAO,iBAAiB,MAAM,oCAAoC,CAAA;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAA;AAC3C,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AACvD,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAA;AACnE,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;AAC/C,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAA;AACzD,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AACvD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAA;AAC3C,OAAO,SAAS,MAAM,kBAAkB,CAAA;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;AAC/C,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAA;AAC3C,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;AAC/C,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAA;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,oBAAoB,MAAM,gCAAgC,CAAA;AACjE,OAAO,cAAc,MAAM,iCAAiC,CAAA;AAC5D,OAAO,iBAAiB,MAAM,oCAAoC,CAAA;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAA;AAC3C,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AACvD,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAA;AACnE,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;AAC/C,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAA;AACzD,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAA;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAA;AAEvD,OAAO,EACL,SAAS,EACT,SAAS,EACT,OAAO,EACP,UAAU,EACV,WAAW,EACX,WAAW,EACX,YAAY,EACZ,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,OAAO,EACP,WAAW,EACX,oBAAoB,EACpB,cAAc,EACd,iBAAiB,EACjB,WAAW,EACX,QAAQ,EACR,OAAO,EACP,aAAa,EACb,mBAAmB,EACnB,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,cAAc,EACd,WAAW,EACX,aAAa,EACb,kBAAkB,EAClB,aAAa,GACd,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phx-react",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.129",
|
|
4
4
|
"description": "PHX REACT",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -38,7 +38,15 @@
|
|
|
38
38
|
"author": "PHX DevTeam 2023",
|
|
39
39
|
"license": "MIT",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@
|
|
41
|
+
"@apollo/client": "3.8.1",
|
|
42
|
+
"@apollo/experimental-nextjs-app-support": "0.4.1",
|
|
43
|
+
"@fortawesome/fontawesome-svg-core": "^6.4.0",
|
|
44
|
+
"@fortawesome/free-solid-svg-icons": "^6.4.0",
|
|
45
|
+
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
46
|
+
"@headlessui/react": "^1.7.16",
|
|
47
|
+
"@heroicons/react": "^2.0.18",
|
|
48
|
+
"@lexical/react": "^0.12.0",
|
|
49
|
+
"@storybook/addon-essentials": "^7.2.3",
|
|
42
50
|
"@storybook/addon-interactions": "7.2.3",
|
|
43
51
|
"@storybook/addon-links": "^7.2.3",
|
|
44
52
|
"@storybook/addon-styling": "^1.3.6",
|
|
@@ -61,35 +69,28 @@
|
|
|
61
69
|
"eslint-plugin-react": "^7.30.0",
|
|
62
70
|
"eslint-plugin-react-hooks": "^4.5.0",
|
|
63
71
|
"eslint-plugin-storybook": "^0.6.13",
|
|
72
|
+
"graphql": "^16.7.1",
|
|
64
73
|
"jest": "^28.1.1",
|
|
65
74
|
"jest-canvas-mock": "^2.4.0",
|
|
66
75
|
"jest-environment-jsdom": "^28.1.1",
|
|
76
|
+
"js-cookie": "^3.0.5",
|
|
77
|
+
"lexical": "^0.12.0",
|
|
67
78
|
"next": "^13.4.13",
|
|
68
79
|
"postcss": "^8.4.23",
|
|
69
80
|
"prettier": "^2.6.2",
|
|
70
81
|
"prop-types": "^15.8.1",
|
|
71
82
|
"react": "^18.1.0",
|
|
72
83
|
"react-dom": "^18.1.0",
|
|
84
|
+
"react-hook-form": "^7.45.2",
|
|
73
85
|
"storybook": "^7.2.3",
|
|
74
86
|
"tailwindcss": "^3.3.3",
|
|
75
87
|
"ts-jest": "^28.0.4",
|
|
76
88
|
"typescript": "^4.7.3",
|
|
77
|
-
"vite": "^4.3.9"
|
|
78
|
-
"react-hook-form": "^7.45.2",
|
|
79
|
-
"@headlessui/react": "^1.7.16",
|
|
80
|
-
"@heroicons/react": "^2.0.18",
|
|
81
|
-
"js-cookie": "^3.0.5",
|
|
82
|
-
"@apollo/client": "3.8.1",
|
|
83
|
-
"graphql": "^16.7.1",
|
|
84
|
-
"@apollo/experimental-nextjs-app-support": "0.4.1",
|
|
85
|
-
"@fortawesome/fontawesome-svg-core": "^6.4.0",
|
|
86
|
-
"@fortawesome/free-solid-svg-icons": "^6.4.0",
|
|
87
|
-
"@fortawesome/react-fontawesome": "^0.2.0"
|
|
89
|
+
"vite": "^4.3.9"
|
|
88
90
|
},
|
|
89
91
|
"eslintConfig": {
|
|
90
92
|
"extends": [
|
|
91
93
|
"plugin:storybook/recommended"
|
|
92
94
|
]
|
|
93
|
-
}
|
|
94
|
-
"dependencies": {}
|
|
95
|
+
}
|
|
95
96
|
}
|