@design-edito/tools 0.4.6 → 0.4.12

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.
Files changed (59) hide show
  1. package/agnostic/arrays/index.d.ts +1 -1
  2. package/agnostic/arrays/index.js +1 -1
  3. package/agnostic/arrays/make/index.d.ts +1 -1
  4. package/agnostic/css/index.d.ts +2 -2
  5. package/agnostic/css/index.js +2 -2
  6. package/agnostic/css/scale/index.d.ts +46 -16
  7. package/agnostic/css/scale/index.js +67 -38
  8. package/agnostic/css/scale/index.test.js +81 -64
  9. package/agnostic/html/deep-select/index.d.ts +31 -0
  10. package/agnostic/html/deep-select/index.js +52 -0
  11. package/agnostic/html/hyper-json/smart-tags/coalesced/index.d.ts +13 -13
  12. package/agnostic/html/hyper-json/smart-tags/coalesced/index.js +13 -13
  13. package/agnostic/html/hyper-json/smart-tags/isolated/index.d.ts +1 -1
  14. package/agnostic/html/hyper-json/smart-tags/isolated/index.js +1 -1
  15. package/agnostic/html/index.d.ts +4 -2
  16. package/agnostic/html/index.js +4 -2
  17. package/agnostic/html/watch-selection/index.d.ts +41 -0
  18. package/agnostic/html/watch-selection/index.js +50 -0
  19. package/agnostic/index.d.ts +3 -3
  20. package/agnostic/index.js +3 -3
  21. package/agnostic/misc/index.d.ts +1 -1
  22. package/agnostic/misc/index.js +1 -1
  23. package/agnostic/numbers/index.d.ts +3 -3
  24. package/agnostic/numbers/index.js +3 -3
  25. package/agnostic/objects/index.d.ts +2 -2
  26. package/agnostic/objects/index.js +2 -2
  27. package/agnostic/optim/index.d.ts +1 -1
  28. package/agnostic/optim/index.js +1 -1
  29. package/agnostic/strings/index.d.ts +2 -1
  30. package/agnostic/strings/index.js +2 -1
  31. package/agnostic/strings/split-trim/index.d.ts +27 -0
  32. package/agnostic/strings/split-trim/index.js +36 -0
  33. package/components/Video/index.controlled.d.ts +153 -0
  34. package/components/Video/index.controlled.js +255 -0
  35. package/components/Video/index.d.ts +10 -114
  36. package/components/Video/index.js +140 -265
  37. package/components/Video/utils.d.ts +11 -10
  38. package/components/Video/utils.js +30 -37
  39. package/components/index.d.ts +2 -2
  40. package/components/index.js +2 -2
  41. package/components/public-classnames.d.ts +1 -0
  42. package/components/public-classnames.js +1 -0
  43. package/index.d.ts +1 -1
  44. package/index.js +1 -1
  45. package/node/@aws-s3/storage/directory/index.d.ts +1 -1
  46. package/node/@aws-s3/storage/directory/index.js +1 -1
  47. package/node/@aws-s3/storage/file/index.d.ts +1 -1
  48. package/node/@aws-s3/storage/file/index.js +1 -1
  49. package/node/@google-cloud/storage/file/index.d.ts +1 -1
  50. package/node/@google-cloud/storage/file/index.js +1 -1
  51. package/node/ftps/file/index.d.ts +1 -1
  52. package/node/ftps/file/index.js +1 -1
  53. package/node/images/transform/operations/index.d.ts +2 -2
  54. package/node/images/transform/operations/index.js +2 -2
  55. package/node/index.d.ts +3 -3
  56. package/node/index.js +3 -3
  57. package/node/sftp/file/index.d.ts +2 -2
  58. package/node/sftp/file/index.js +2 -2
  59. package/package.json +22 -1
@@ -1,15 +1,15 @@
1
1
  export * as beforeAfter from './BeforeAfter/index.js'
2
+ export * as disclaimer from './Disclaimer/index.js'
2
3
  export * as drawer from './Drawer/index.js'
3
4
  export * as eventListener from './EventListener/index.js'
4
- export * as disclaimer from './Disclaimer/index.js'
5
5
  export * as gallery from './Gallery/index.js'
6
6
  export * as image from './Image/index.js'
7
7
  export * as intersectionObserver from './IntersectionObserver/index.js'
8
8
  export * as overlayer from './Overlayer/index.js'
9
9
  export * as paginator from './Paginator/index.js'
10
10
  export * as resizeObserver from './ResizeObserver/index.js'
11
- export * as scrollListener from './ScrollListener/index.js'
12
11
  export * as scrllgngn from './Scrllgngn/index.js'
12
+ export * as scrollListener from './ScrollListener/index.js'
13
13
  export * as sequencer from './Sequencer/index.js'
14
14
  export * as shadowRoot from './ShadowRoot/index.js'
15
15
  export * as subtitles from './Subtitles/index.js'
@@ -16,3 +16,4 @@ export declare const subtitles = "dsed-subtitles";
16
16
  export declare const theatre = "dsed-theatre";
17
17
  export declare const uiModule = "dsed-ui-module";
18
18
  export declare const video = "dsed-video";
19
+ export declare const videoWrapper = "dsed-video-wrapper";
@@ -16,3 +16,4 @@ export const subtitles = 'dsed-subtitles';
16
16
  export const theatre = 'dsed-theatre';
17
17
  export const uiModule = 'dsed-ui-module';
18
18
  export const video = 'dsed-video';
19
+ export const videoWrapper = 'dsed-video-wrapper';
package/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
+ export * as agnostic from './agnostic/index.js'
1
2
  export * as components from './components/index.js'
2
3
  export * as node from './node/index.js'
3
- export * as agnostic from './agnostic/index.js'
package/index.js CHANGED
@@ -1,3 +1,3 @@
1
+ export * as agnostic from './agnostic/index.js'
1
2
  export * as components from './components/index.js'
2
3
  export * as node from './node/index.js'
3
- export * as agnostic from './agnostic/index.js'
@@ -1,4 +1,4 @@
1
1
  export * as copyDir from './copy-dir/index.js'
2
2
  export * as list from './list/index.js'
3
- export * as removeDir from './remove-dir/index.js'
4
3
  export * as moveDir from './move-dir/index.js'
4
+ export * as removeDir from './remove-dir/index.js'
@@ -1,4 +1,4 @@
1
1
  export * as copyDir from './copy-dir/index.js'
2
2
  export * as list from './list/index.js'
3
- export * as removeDir from './remove-dir/index.js'
4
3
  export * as moveDir from './move-dir/index.js'
4
+ export * as removeDir from './remove-dir/index.js'
@@ -1,6 +1,6 @@
1
+ export * as copy from './copy/index.js'
1
2
  export * as download from './download/index.js'
2
3
  export * as exists from './exists/index.js'
3
- export * as copy from './copy/index.js'
4
4
  export * as move from './move/index.js'
5
5
  export * as remove from './remove/index.js'
6
6
  export * as stat from './stat/index.js'
@@ -1,6 +1,6 @@
1
+ export * as copy from './copy/index.js'
1
2
  export * as download from './download/index.js'
2
3
  export * as exists from './exists/index.js'
3
- export * as copy from './copy/index.js'
4
4
  export * as move from './move/index.js'
5
5
  export * as remove from './remove/index.js'
6
6
  export * as stat from './stat/index.js'
@@ -1,4 +1,3 @@
1
- export * as copy from './copy/index.js'
2
1
  export * as download from './download/index.js'
3
2
  export * as exists from './exists/index.js'
4
3
  export * as generateSignedUrl from './generate-signed-url/index.js'
@@ -10,3 +9,4 @@ export * as revokeSignedUrls from './revoke-signed-urls/index.js'
10
9
  export * as stat from './stat/index.js'
11
10
  export * as updateMetadata from './update-metadata/index.js'
12
11
  export * as upload from './upload/index.js'
12
+ export * as copy from './copy/index.js'
@@ -1,4 +1,3 @@
1
- export * as copy from './copy/index.js'
2
1
  export * as download from './download/index.js'
3
2
  export * as exists from './exists/index.js'
4
3
  export * as generateSignedUrl from './generate-signed-url/index.js'
@@ -10,3 +9,4 @@ export * as revokeSignedUrls from './revoke-signed-urls/index.js'
10
9
  export * as stat from './stat/index.js'
11
10
  export * as updateMetadata from './update-metadata/index.js'
12
11
  export * as upload from './upload/index.js'
12
+ export * as copy from './copy/index.js'
@@ -3,5 +3,5 @@ export * as download from './download/index.js'
3
3
  export * as exists from './exists/index.js'
4
4
  export * as move from './move/index.js'
5
5
  export * as remove from './remove/index.js'
6
- export * as upload from './upload/index.js'
7
6
  export * as stat from './stat/index.js'
7
+ export * as upload from './upload/index.js'
@@ -3,5 +3,5 @@ export * as download from './download/index.js'
3
3
  export * as exists from './exists/index.js'
4
4
  export * as move from './move/index.js'
5
5
  export * as remove from './remove/index.js'
6
- export * as upload from './upload/index.js'
7
6
  export * as stat from './stat/index.js'
7
+ export * as upload from './upload/index.js'
@@ -1,5 +1,5 @@
1
- export * as brighten from './brighten/index.js'
2
1
  export * as blur from './blur/index.js'
2
+ export * as brighten from './brighten/index.js'
3
3
  export * as extend from './extend/index.js'
4
4
  export * as extract from './extract/index.js'
5
5
  export * as flatten from './flatten/index.js'
@@ -11,5 +11,5 @@ export * as lighten from './lighten/index.js'
11
11
  export * as normalize from './normalize/index.js'
12
12
  export * as overlay from './overlay/index.js'
13
13
  export * as resize from './resize/index.js'
14
- export * as saturate from './saturate/index.js'
15
14
  export * as rotate from './rotate/index.js'
15
+ export * as saturate from './saturate/index.js'
@@ -1,5 +1,5 @@
1
- export * as brighten from './brighten/index.js'
2
1
  export * as blur from './blur/index.js'
2
+ export * as brighten from './brighten/index.js'
3
3
  export * as extend from './extend/index.js'
4
4
  export * as extract from './extract/index.js'
5
5
  export * as flatten from './flatten/index.js'
@@ -11,5 +11,5 @@ export * as lighten from './lighten/index.js'
11
11
  export * as normalize from './normalize/index.js'
12
12
  export * as overlay from './overlay/index.js'
13
13
  export * as resize from './resize/index.js'
14
- export * as saturate from './saturate/index.js'
15
14
  export * as rotate from './rotate/index.js'
15
+ export * as saturate from './saturate/index.js'
package/node/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
- export * as designEdito from './@design-edito/index.js'
2
1
  export * as awsS3 from './@aws-s3/index.js'
2
+ export * as designEdito from './@design-edito/index.js'
3
3
  export * as express from './@express/index.js'
4
4
  export * as googleCloud from './@google-cloud/index.js'
5
5
  export * as cloudStorage from './cloud-storage/index.js'
6
6
  export * as encryption from './encryption/index.js'
7
7
  export * as files from './files/index.js'
8
- export * as images from './images/index.js'
9
8
  export * as ftps from './ftps/index.js'
10
- export * as sftp from './sftp/index.js'
9
+ export * as images from './images/index.js'
11
10
  export * as process from './process/index.js'
11
+ export * as sftp from './sftp/index.js'
package/node/index.js CHANGED
@@ -1,11 +1,11 @@
1
- export * as designEdito from './@design-edito/index.js'
2
1
  export * as awsS3 from './@aws-s3/index.js'
2
+ export * as designEdito from './@design-edito/index.js'
3
3
  export * as express from './@express/index.js'
4
4
  export * as googleCloud from './@google-cloud/index.js'
5
5
  export * as cloudStorage from './cloud-storage/index.js'
6
6
  export * as encryption from './encryption/index.js'
7
7
  export * as files from './files/index.js'
8
- export * as images from './images/index.js'
9
8
  export * as ftps from './ftps/index.js'
10
- export * as sftp from './sftp/index.js'
9
+ export * as images from './images/index.js'
11
10
  export * as process from './process/index.js'
11
+ export * as sftp from './sftp/index.js'
@@ -1,7 +1,7 @@
1
1
  export * as copy from './copy/index.js'
2
- export * as exists from './exists/index.js'
3
2
  export * as download from './download/index.js'
3
+ export * as exists from './exists/index.js'
4
+ export * as move from './move/index.js'
4
5
  export * as remove from './remove/index.js'
5
6
  export * as stat from './stat/index.js'
6
7
  export * as upload from './upload/index.js'
7
- export * as move from './move/index.js'
@@ -1,7 +1,7 @@
1
1
  export * as copy from './copy/index.js'
2
- export * as exists from './exists/index.js'
3
2
  export * as download from './download/index.js'
3
+ export * as exists from './exists/index.js'
4
+ export * as move from './move/index.js'
4
5
  export * as remove from './remove/index.js'
5
6
  export * as stat from './stat/index.js'
6
7
  export * as upload from './upload/index.js'
7
- export * as move from './move/index.js'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@design-edito/tools",
3
- "version": "0.4.6",
3
+ "version": "0.4.12",
4
4
  "description": "",
5
5
  "author": "Maxime Fabas",
6
6
  "license": "ISC",
@@ -252,6 +252,13 @@
252
252
  "import": "./agnostic/html/index.js",
253
253
  "types": "./agnostic/html/index.d.ts"
254
254
  },
255
+ "./agnostic/html/deep-select": {
256
+ "import": "./agnostic/html/deep-select/index.js",
257
+ "types": "./agnostic/html/deep-select/index.d.ts"
258
+ },
259
+ "./agnostic/html/deep-select/index.js": {
260
+ "import": "./agnostic/html/deep-select/index.js"
261
+ },
255
262
  "./agnostic/html/get-node-ancestors": {
256
263
  "import": "./agnostic/html/get-node-ancestors/index.js",
257
264
  "types": "./agnostic/html/get-node-ancestors/index.d.ts"
@@ -836,6 +843,13 @@
836
843
  "./agnostic/html/string-to-nodes/index.js": {
837
844
  "import": "./agnostic/html/string-to-nodes/index.js"
838
845
  },
846
+ "./agnostic/html/watch-selection": {
847
+ "import": "./agnostic/html/watch-selection/index.js",
848
+ "types": "./agnostic/html/watch-selection/index.d.ts"
849
+ },
850
+ "./agnostic/html/watch-selection/index.js": {
851
+ "import": "./agnostic/html/watch-selection/index.js"
852
+ },
839
853
  "./agnostic/index.js": {
840
854
  "import": "./agnostic/index.js"
841
855
  },
@@ -1240,6 +1254,13 @@
1240
1254
  "./agnostic/strings/replace-all/index.js": {
1241
1255
  "import": "./agnostic/strings/replace-all/index.js"
1242
1256
  },
1257
+ "./agnostic/strings/split-trim": {
1258
+ "import": "./agnostic/strings/split-trim/index.js",
1259
+ "types": "./agnostic/strings/split-trim/index.d.ts"
1260
+ },
1261
+ "./agnostic/strings/split-trim/index.js": {
1262
+ "import": "./agnostic/strings/split-trim/index.js"
1263
+ },
1243
1264
  "./agnostic/strings/to-alphanum": {
1244
1265
  "import": "./agnostic/strings/to-alphanum/index.js",
1245
1266
  "types": "./agnostic/strings/to-alphanum/index.d.ts"