@kwiz/fluentui 1.0.153 → 1.0.154
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/LICENSE +21 -21
- package/README.md +53 -53
- package/dist/@types/forwardRef.d.ts +0 -0
- package/dist/@types/forwardRef.js +1 -0
- package/dist/@types/forwardRef.js.map +1 -0
- package/dist/_modules/config.d.ts +1 -0
- package/dist/_modules/config.js +9 -0
- package/dist/_modules/config.js.map +1 -0
- package/dist/_modules/constants.d.ts +2 -0
- package/dist/_modules/constants.js +3 -0
- package/dist/_modules/constants.js.map +1 -0
- package/dist/controls/combobox.d.ts +12 -0
- package/dist/controls/combobox.js +21 -0
- package/dist/controls/combobox.js.map +1 -0
- package/dist/controls/date copy.d.ts +14 -0
- package/dist/controls/date copy.js +49 -0
- package/dist/controls/date copy.js.map +1 -0
- package/dist/controls/error-boundary copy.d.ts +23 -0
- package/dist/controls/error-boundary copy.js +33 -0
- package/dist/controls/error-boundary copy.js.map +1 -0
- package/dist/controls/field.d.ts +11 -0
- package/dist/controls/field.js +33 -0
- package/dist/controls/field.js.map +1 -0
- package/dist/controls/form-context.d.ts +20 -0
- package/dist/controls/form-context.js +50 -0
- package/dist/controls/form-context.js.map +1 -0
- package/dist/controls/form.d.ts +29 -0
- package/dist/controls/form.js +58 -0
- package/dist/controls/form.js.map +1 -0
- package/dist/controls/index.d.ts +4 -0
- package/dist/controls/index.js +4 -0
- package/dist/controls/index.js.map +1 -1
- package/dist/controls/kwizoverflow copy.d.ts +14 -0
- package/dist/controls/kwizoverflow copy.js +47 -0
- package/dist/controls/kwizoverflow copy.js.map +1 -0
- package/dist/controls/svg.js +21 -21
- package/dist/controls/svg.js.map +1 -1
- package/dist/controls/table.d.ts +42 -0
- package/dist/controls/table.js +139 -0
- package/dist/controls/table.js.map +1 -0
- package/dist/controls/vertical.d.ts +1 -3
- package/dist/helpers/common.d.ts +4 -0
- package/dist/helpers/common.js +2 -0
- package/dist/helpers/common.js.map +1 -0
- package/dist/helpers/context.d.ts +26 -0
- package/dist/helpers/context.js +15 -0
- package/dist/helpers/context.js.map +1 -0
- package/dist/helpers/drag-drop/exports.d.ts +12 -0
- package/dist/helpers/drag-drop/exports.js +3 -0
- package/dist/helpers/drag-drop/exports.js.map +1 -0
- package/dist/helpers/exports.d.ts +7 -0
- package/dist/helpers/exports.js +8 -0
- package/dist/helpers/exports.js.map +1 -0
- package/dist/helpers/use-highlight.js +8 -8
- package/package.json +88 -88
package/package.json
CHANGED
|
@@ -1,88 +1,88 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@kwiz/fluentui",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "KWIZ common controls for FluentUI",
|
|
5
|
-
"module": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"exports": {
|
|
8
|
-
".": {
|
|
9
|
-
"types": "./dist/index.d.ts",
|
|
10
|
-
"import": "./dist/index.js",
|
|
11
|
-
"default": "./dist/index.js"
|
|
12
|
-
},
|
|
13
|
-
"./package.json": "./package.json"
|
|
14
|
-
},
|
|
15
|
-
"scripts": {
|
|
16
|
-
"watch": "tsc -watch",
|
|
17
|
-
"build": "npm run test && tsc",
|
|
18
|
-
"build-explain": "tsc --explainFiles",
|
|
19
|
-
"check-dependencies": "madge --circular ./src",
|
|
20
|
-
"create-link": "npm link",
|
|
21
|
-
"test": "npm run prestart && depcruise src && node --import tsx --test src",
|
|
22
|
-
"link-local-kwiz": "npm link @kwiz/common",
|
|
23
|
-
"__update-kwiz-packages": "npm install @kwiz/common@latest",
|
|
24
|
-
"npm-v-patch": "npm version patch && git push origin main:main && git push --tags",
|
|
25
|
-
"npm-v-major": "npm version major && git push origin main:main && git push --tags",
|
|
26
|
-
"npm-publish": "npm publish --access public",
|
|
27
|
-
"reset-repo": "git fetch origin && git reset --hard origin/main",
|
|
28
|
-
"clear-npm-cache": "npm cache clean --force",
|
|
29
|
-
"prestart": "check-node-version --node 18"
|
|
30
|
-
},
|
|
31
|
-
"repository": {
|
|
32
|
-
"type": "git",
|
|
33
|
-
"url": "git+https://github.com/KWizCom/fluentui.git"
|
|
34
|
-
},
|
|
35
|
-
"keywords": [
|
|
36
|
-
"KWIZ",
|
|
37
|
-
"FluentUI"
|
|
38
|
-
],
|
|
39
|
-
"author": "Shai Petel",
|
|
40
|
-
"contributors": [
|
|
41
|
-
"Shai Petel"
|
|
42
|
-
],
|
|
43
|
-
"license": "MIT",
|
|
44
|
-
"bugs": {
|
|
45
|
-
"url": "https://github.com/KWizCom/fluentui/issues",
|
|
46
|
-
"email": "support@kwizcom.com"
|
|
47
|
-
},
|
|
48
|
-
"homepage": "https://github.com/KWizCom/fluentui#readme",
|
|
49
|
-
"private": false,
|
|
50
|
-
"engines": {
|
|
51
|
-
"node": ">=16"
|
|
52
|
-
},
|
|
53
|
-
"packageManager": "npm@9.5.1",
|
|
54
|
-
"devDependencies": {
|
|
55
|
-
"@types/qrcode": "^1.5.5",
|
|
56
|
-
"check-node-version": "^4.2.1",
|
|
57
|
-
"dependency-cruiser": "^16.8.0",
|
|
58
|
-
"fs-extra": "^11.2.0",
|
|
59
|
-
"madge": "^6.1.0",
|
|
60
|
-
"tsx": "^4.7.1",
|
|
61
|
-
"typescript": "^5.3.3"
|
|
62
|
-
},
|
|
63
|
-
"dependencies": {
|
|
64
|
-
"@fluentui/react-datepicker-compat": "^0.4.53",
|
|
65
|
-
"@fluentui/react-timepicker-compat": "^0.2.42",
|
|
66
|
-
"@kwiz/common": "^1.0.188",
|
|
67
|
-
"@mismerge/core": "^1.2.1",
|
|
68
|
-
"@mismerge/react": "^1.0.1",
|
|
69
|
-
"@monaco-editor/react": "^4.7.0",
|
|
70
|
-
"esbuild": "^0.19.12",
|
|
71
|
-
"get-tsconfig": "^4.7.2",
|
|
72
|
-
"jodit": "^4.6.2",
|
|
73
|
-
"jodit-react": "^5.2.19",
|
|
74
|
-
"qrcode": "^1.5.4",
|
|
75
|
-
"react-dnd": "^16.0.1",
|
|
76
|
-
"react-dnd-html5-backend": "^16.0.1",
|
|
77
|
-
"react-pick-color": "^2.0.0",
|
|
78
|
-
"resolve-pkg-maps": "^1.0.0"
|
|
79
|
-
},
|
|
80
|
-
"peerDependencies": {
|
|
81
|
-
"@fluentui/react-components": ">=9.54.17 <10.0.0",
|
|
82
|
-
"@fluentui/react-icons": "^2.0.269",
|
|
83
|
-
"@types/react": ">=16.14.0 <19.0.0",
|
|
84
|
-
"@types/react-dom": ">=16.9.0 <19.0.0",
|
|
85
|
-
"react": ">=16.14.0 <19.0.0",
|
|
86
|
-
"react-dom": ">=16.14.0 <19.0.0"
|
|
87
|
-
}
|
|
88
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@kwiz/fluentui",
|
|
3
|
+
"version": "1.0.154",
|
|
4
|
+
"description": "KWIZ common controls for FluentUI",
|
|
5
|
+
"module": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"default": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./package.json": "./package.json"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"watch": "tsc -watch",
|
|
17
|
+
"build": "npm run test && tsc",
|
|
18
|
+
"build-explain": "tsc --explainFiles",
|
|
19
|
+
"check-dependencies": "madge --circular ./src",
|
|
20
|
+
"create-link": "npm link",
|
|
21
|
+
"test": "npm run prestart && depcruise src && node --import tsx --test src",
|
|
22
|
+
"link-local-kwiz": "npm link @kwiz/common",
|
|
23
|
+
"__update-kwiz-packages": "npm install @kwiz/common@latest",
|
|
24
|
+
"npm-v-patch": "npm version patch && git push origin main:main && git push --tags",
|
|
25
|
+
"npm-v-major": "npm version major && git push origin main:main && git push --tags",
|
|
26
|
+
"npm-publish": "npm publish --access public",
|
|
27
|
+
"reset-repo": "git fetch origin && git reset --hard origin/main",
|
|
28
|
+
"clear-npm-cache": "npm cache clean --force",
|
|
29
|
+
"prestart": "check-node-version --node 18"
|
|
30
|
+
},
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/KWizCom/fluentui.git"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"KWIZ",
|
|
37
|
+
"FluentUI"
|
|
38
|
+
],
|
|
39
|
+
"author": "Shai Petel",
|
|
40
|
+
"contributors": [
|
|
41
|
+
"Shai Petel"
|
|
42
|
+
],
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/KWizCom/fluentui/issues",
|
|
46
|
+
"email": "support@kwizcom.com"
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://github.com/KWizCom/fluentui#readme",
|
|
49
|
+
"private": false,
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=16"
|
|
52
|
+
},
|
|
53
|
+
"packageManager": "npm@9.5.1",
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/qrcode": "^1.5.5",
|
|
56
|
+
"check-node-version": "^4.2.1",
|
|
57
|
+
"dependency-cruiser": "^16.8.0",
|
|
58
|
+
"fs-extra": "^11.2.0",
|
|
59
|
+
"madge": "^6.1.0",
|
|
60
|
+
"tsx": "^4.7.1",
|
|
61
|
+
"typescript": "^5.3.3"
|
|
62
|
+
},
|
|
63
|
+
"dependencies": {
|
|
64
|
+
"@fluentui/react-datepicker-compat": "^0.4.53",
|
|
65
|
+
"@fluentui/react-timepicker-compat": "^0.2.42",
|
|
66
|
+
"@kwiz/common": "^1.0.188",
|
|
67
|
+
"@mismerge/core": "^1.2.1",
|
|
68
|
+
"@mismerge/react": "^1.0.1",
|
|
69
|
+
"@monaco-editor/react": "^4.7.0",
|
|
70
|
+
"esbuild": "^0.19.12",
|
|
71
|
+
"get-tsconfig": "^4.7.2",
|
|
72
|
+
"jodit": "^4.6.2",
|
|
73
|
+
"jodit-react": "^5.2.19",
|
|
74
|
+
"qrcode": "^1.5.4",
|
|
75
|
+
"react-dnd": "^16.0.1",
|
|
76
|
+
"react-dnd-html5-backend": "^16.0.1",
|
|
77
|
+
"react-pick-color": "^2.0.0",
|
|
78
|
+
"resolve-pkg-maps": "^1.0.0"
|
|
79
|
+
},
|
|
80
|
+
"peerDependencies": {
|
|
81
|
+
"@fluentui/react-components": ">=9.54.17 <10.0.0",
|
|
82
|
+
"@fluentui/react-icons": "^2.0.269",
|
|
83
|
+
"@types/react": ">=16.14.0 <19.0.0",
|
|
84
|
+
"@types/react-dom": ">=16.9.0 <19.0.0",
|
|
85
|
+
"react": ">=16.14.0 <19.0.0",
|
|
86
|
+
"react-dom": ">=16.14.0 <19.0.0"
|
|
87
|
+
}
|
|
88
|
+
}
|