@nectary/components 5.26.1 → 5.27.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/avatar/index.js +1 -1
- package/avatar/types.d.ts +4 -0
- package/bundle.d.ts +4 -0
- package/bundle.js +722 -276
- package/bundle.ts +4 -0
- package/package.json +3 -3
- package/standalone.d.ts +4 -0
- package/standalone.js +4 -0
- package/standalone.ts +4 -0
package/bundle.ts
CHANGED
|
@@ -23,6 +23,7 @@ export * from './dialog/index.js'
|
|
|
23
23
|
export * from './emoji-picker/index.js'
|
|
24
24
|
export * from './emoji/index.js'
|
|
25
25
|
export * from './field/index.js'
|
|
26
|
+
export * from './field-v2/index.js'
|
|
26
27
|
export * from './file-drop/index.js'
|
|
27
28
|
export * from './file-picker/index.js'
|
|
28
29
|
export * from './file-status/index.js'
|
|
@@ -47,6 +48,7 @@ export * from './radio-option/index.js'
|
|
|
47
48
|
export * from './radio/index.js'
|
|
48
49
|
export * from './rich-text/index.js'
|
|
49
50
|
export * from './rich-textarea/index.js'
|
|
51
|
+
export * from './rich-textarea-chip/index.js'
|
|
50
52
|
export * from './segment-collapse/index.js'
|
|
51
53
|
export * from './segmented-control-option/index.js'
|
|
52
54
|
export * from './segmented-control/index.js'
|
|
@@ -55,6 +57,8 @@ export * from './segmented-icon-control/index.js'
|
|
|
55
57
|
export * from './select-button/index.js'
|
|
56
58
|
export * from './select-menu-option/index.js'
|
|
57
59
|
export * from './select-menu/index.js'
|
|
60
|
+
export * from './sheet/index.js'
|
|
61
|
+
export * from './sheet-title/index.js'
|
|
58
62
|
export * from './skeleton-item/index.js'
|
|
59
63
|
export * from './skeleton/index.js'
|
|
60
64
|
export * from './spinner/index.js'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nectary/components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.27.0",
|
|
4
4
|
"files": [
|
|
5
5
|
"**/*/*.css",
|
|
6
6
|
"**/*/*.json",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.22.15",
|
|
27
|
-
"@nectary/assets": "3.6.
|
|
27
|
+
"@nectary/assets": "3.6.8"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@babel/cli": "^7.22.15",
|
|
@@ -40,6 +40,6 @@
|
|
|
40
40
|
"vite": "^7.0.6"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@nectary/theme-base": "1.
|
|
43
|
+
"@nectary/theme-base": "1.15.0"
|
|
44
44
|
}
|
|
45
45
|
}
|
package/standalone.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ import './dialog/index.js';
|
|
|
22
22
|
import './emoji-picker/index.js';
|
|
23
23
|
import './emoji/index.js';
|
|
24
24
|
import './field/index.js';
|
|
25
|
+
import './field-v2/index.js';
|
|
25
26
|
import './file-drop/index.js';
|
|
26
27
|
import './file-picker/index.js';
|
|
27
28
|
import './file-status/index.js';
|
|
@@ -46,6 +47,7 @@ import './radio-option/index.js';
|
|
|
46
47
|
import './radio/index.js';
|
|
47
48
|
import './rich-text/index.js';
|
|
48
49
|
import './rich-textarea/index.js';
|
|
50
|
+
import './rich-textarea-chip/index.js';
|
|
49
51
|
import './segment-collapse/index.js';
|
|
50
52
|
import './segmented-control-option/index.js';
|
|
51
53
|
import './segmented-control/index.js';
|
|
@@ -54,6 +56,8 @@ import './segmented-icon-control/index.js';
|
|
|
54
56
|
import './select-button/index.js';
|
|
55
57
|
import './select-menu-option/index.js';
|
|
56
58
|
import './select-menu/index.js';
|
|
59
|
+
import './sheet/index.js';
|
|
60
|
+
import './sheet-title/index.js';
|
|
57
61
|
import './skeleton-item/index.js';
|
|
58
62
|
import './skeleton/index.js';
|
|
59
63
|
import './spinner/index.js';
|
package/standalone.js
CHANGED
|
@@ -23,6 +23,7 @@ import "./dialog/index.js";
|
|
|
23
23
|
import "./emoji-picker/index.js";
|
|
24
24
|
import "./emoji/index.js";
|
|
25
25
|
import "./field/index.js";
|
|
26
|
+
import "./field-v2/index.js";
|
|
26
27
|
import "./file-drop/index.js";
|
|
27
28
|
import "./file-picker/index.js";
|
|
28
29
|
import "./file-status/index.js";
|
|
@@ -47,6 +48,7 @@ import "./radio-option/index.js";
|
|
|
47
48
|
import "./radio/index.js";
|
|
48
49
|
import "./rich-text/index.js";
|
|
49
50
|
import "./rich-textarea/index.js";
|
|
51
|
+
import "./rich-textarea-chip/index.js";
|
|
50
52
|
import "./segment-collapse/index.js";
|
|
51
53
|
import "./segmented-control-option/index.js";
|
|
52
54
|
import "./segmented-control/index.js";
|
|
@@ -55,6 +57,8 @@ import "./segmented-icon-control/index.js";
|
|
|
55
57
|
import "./select-button/index.js";
|
|
56
58
|
import "./select-menu-option/index.js";
|
|
57
59
|
import "./select-menu/index.js";
|
|
60
|
+
import "./sheet/index.js";
|
|
61
|
+
import "./sheet-title/index.js";
|
|
58
62
|
import "./skeleton-item/index.js";
|
|
59
63
|
import "./skeleton/index.js";
|
|
60
64
|
import "./spinner/index.js";
|
package/standalone.ts
CHANGED
|
@@ -30,6 +30,7 @@ import './dialog/index.js'
|
|
|
30
30
|
import './emoji-picker/index.js'
|
|
31
31
|
import './emoji/index.js'
|
|
32
32
|
import './field/index.js'
|
|
33
|
+
import './field-v2/index.js'
|
|
33
34
|
import './file-drop/index.js'
|
|
34
35
|
import './file-picker/index.js'
|
|
35
36
|
import './file-status/index.js'
|
|
@@ -54,6 +55,7 @@ import './radio-option/index.js'
|
|
|
54
55
|
import './radio/index.js'
|
|
55
56
|
import './rich-text/index.js'
|
|
56
57
|
import './rich-textarea/index.js'
|
|
58
|
+
import './rich-textarea-chip/index.js'
|
|
57
59
|
import './segment-collapse/index.js'
|
|
58
60
|
import './segmented-control-option/index.js'
|
|
59
61
|
import './segmented-control/index.js'
|
|
@@ -62,6 +64,8 @@ import './segmented-icon-control/index.js'
|
|
|
62
64
|
import './select-button/index.js'
|
|
63
65
|
import './select-menu-option/index.js'
|
|
64
66
|
import './select-menu/index.js'
|
|
67
|
+
import './sheet/index.js'
|
|
68
|
+
import './sheet-title/index.js'
|
|
65
69
|
import './skeleton-item/index.js'
|
|
66
70
|
import './skeleton/index.js'
|
|
67
71
|
import './spinner/index.js'
|