tosijs-ui 1.0.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/LICENSE +21 -0
- package/README.md +165 -0
- package/dist/ab-test.d.ts +14 -0
- package/dist/ab-test.js +116 -0
- package/dist/babylon-3d.d.ts +53 -0
- package/dist/babylon-3d.js +292 -0
- package/dist/bodymovin-player.d.ts +32 -0
- package/dist/bodymovin-player.js +172 -0
- package/dist/bp-loader.d.ts +1 -0
- package/dist/bp-loader.js +26 -0
- package/dist/carousel.d.ts +113 -0
- package/dist/carousel.js +308 -0
- package/dist/code-editor.d.ts +27 -0
- package/dist/code-editor.js +102 -0
- package/dist/color-input.d.ts +41 -0
- package/dist/color-input.js +112 -0
- package/dist/data-table.d.ts +79 -0
- package/dist/data-table.js +774 -0
- package/dist/drag-and-drop.d.ts +2 -0
- package/dist/drag-and-drop.js +386 -0
- package/dist/editable-rect.d.ts +97 -0
- package/dist/editable-rect.js +450 -0
- package/dist/filter-builder.d.ts +64 -0
- package/dist/filter-builder.js +468 -0
- package/dist/float.d.ts +18 -0
- package/dist/float.js +170 -0
- package/dist/form.d.ts +68 -0
- package/dist/form.js +466 -0
- package/dist/gamepad.d.ts +34 -0
- package/dist/gamepad.js +115 -0
- package/dist/icon-data.d.ts +312 -0
- package/dist/icon-data.js +308 -0
- package/dist/icon-types.d.ts +7 -0
- package/dist/icon-types.js +1 -0
- package/dist/icons.d.ts +17 -0
- package/dist/icons.js +374 -0
- package/dist/iife.js +69 -0
- package/dist/iife.js.map +49 -0
- package/dist/index-iife.d.ts +1 -0
- package/dist/index-iife.js +4 -0
- package/dist/index.d.ts +37 -0
- package/dist/index.js +37 -0
- package/dist/index.js.map +47 -0
- package/dist/live-example.d.ts +63 -0
- package/dist/live-example.js +611 -0
- package/dist/localize.d.ts +46 -0
- package/dist/localize.js +381 -0
- package/dist/make-sorter.d.ts +3 -0
- package/dist/make-sorter.js +119 -0
- package/dist/make-sorter.test.d.ts +1 -0
- package/dist/make-sorter.test.js +48 -0
- package/dist/mapbox.d.ts +24 -0
- package/dist/mapbox.js +161 -0
- package/dist/markdown-viewer.d.ts +17 -0
- package/dist/markdown-viewer.js +173 -0
- package/dist/match-shortcut.d.ts +9 -0
- package/dist/match-shortcut.js +13 -0
- package/dist/match-shortcut.test.d.ts +1 -0
- package/dist/match-shortcut.test.js +194 -0
- package/dist/menu.d.ts +60 -0
- package/dist/menu.js +614 -0
- package/dist/notifications.d.ts +106 -0
- package/dist/notifications.js +308 -0
- package/dist/password-strength.d.ts +35 -0
- package/dist/password-strength.js +302 -0
- package/dist/playwright.config.d.ts +9 -0
- package/dist/playwright.config.js +73 -0
- package/dist/pop-float.d.ts +10 -0
- package/dist/pop-float.js +231 -0
- package/dist/rating.d.ts +62 -0
- package/dist/rating.js +192 -0
- package/dist/rich-text.d.ts +35 -0
- package/dist/rich-text.js +296 -0
- package/dist/segmented.d.ts +80 -0
- package/dist/segmented.js +298 -0
- package/dist/select.d.ts +43 -0
- package/dist/select.js +427 -0
- package/dist/side-nav.d.ts +36 -0
- package/dist/side-nav.js +106 -0
- package/dist/size-break.d.ts +18 -0
- package/dist/size-break.js +118 -0
- package/dist/sizer.d.ts +34 -0
- package/dist/sizer.js +92 -0
- package/dist/src/ab-test.d.ts +14 -0
- package/dist/src/babylon-3d.d.ts +53 -0
- package/dist/src/bodymovin-player.d.ts +32 -0
- package/dist/src/bp-loader.d.ts +0 -0
- package/dist/src/carousel.d.ts +113 -0
- package/dist/src/code-editor.d.ts +27 -0
- package/dist/src/color-input.d.ts +41 -0
- package/dist/src/data-table.d.ts +79 -0
- package/dist/src/drag-and-drop.d.ts +2 -0
- package/dist/src/editable-rect.d.ts +97 -0
- package/dist/src/filter-builder.d.ts +64 -0
- package/dist/src/float.d.ts +18 -0
- package/dist/src/form.d.ts +68 -0
- package/dist/src/gamepad.d.ts +34 -0
- package/dist/src/icon-data.d.ts +309 -0
- package/dist/src/icon-types.d.ts +7 -0
- package/dist/src/icons.d.ts +17 -0
- package/dist/src/index.d.ts +37 -0
- package/dist/src/live-example.d.ts +51 -0
- package/dist/src/localize.d.ts +30 -0
- package/dist/src/make-sorter.d.ts +3 -0
- package/dist/src/mapbox.d.ts +24 -0
- package/dist/src/markdown-viewer.d.ts +15 -0
- package/dist/src/match-shortcut.d.ts +9 -0
- package/dist/src/menu.d.ts +60 -0
- package/dist/src/notifications.d.ts +106 -0
- package/dist/src/password-strength.d.ts +35 -0
- package/dist/src/pop-float.d.ts +10 -0
- package/dist/src/rating.d.ts +62 -0
- package/dist/src/rich-text.d.ts +28 -0
- package/dist/src/segmented.d.ts +80 -0
- package/dist/src/select.d.ts +43 -0
- package/dist/src/side-nav.d.ts +36 -0
- package/dist/src/size-break.d.ts +18 -0
- package/dist/src/sizer.d.ts +34 -0
- package/dist/src/tab-selector.d.ts +91 -0
- package/dist/src/tag-list.d.ts +37 -0
- package/dist/src/track-drag.d.ts +5 -0
- package/dist/src/version.d.ts +1 -0
- package/dist/src/via-tag.d.ts +2 -0
- package/dist/tab-selector.d.ts +91 -0
- package/dist/tab-selector.js +326 -0
- package/dist/tag-list.d.ts +37 -0
- package/dist/tag-list.js +375 -0
- package/dist/track-drag.d.ts +5 -0
- package/dist/track-drag.js +143 -0
- package/dist/version.d.ts +1 -0
- package/dist/version.js +1 -0
- package/dist/via-tag.d.ts +2 -0
- package/dist/via-tag.js +102 -0
- package/package.json +58 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export * from './ab-test';
|
|
2
|
+
export * from './babylon-3d';
|
|
3
|
+
export * from './bp-loader';
|
|
4
|
+
export * from './bodymovin-player';
|
|
5
|
+
export * from './carousel';
|
|
6
|
+
export * from './code-editor';
|
|
7
|
+
export * from './color-input';
|
|
8
|
+
export * from './data-table';
|
|
9
|
+
export * as dragAndDrop from './drag-and-drop';
|
|
10
|
+
export * from './editable-rect';
|
|
11
|
+
export * from './filter-builder';
|
|
12
|
+
export * from './float';
|
|
13
|
+
export * from './form';
|
|
14
|
+
export * from './gamepad';
|
|
15
|
+
export * from './icons';
|
|
16
|
+
export * from './live-example';
|
|
17
|
+
export * from './localize';
|
|
18
|
+
export { makeSorter } from './make-sorter';
|
|
19
|
+
export * from './mapbox';
|
|
20
|
+
export * from './markdown-viewer';
|
|
21
|
+
export * from './menu';
|
|
22
|
+
export * from './notifications';
|
|
23
|
+
export * from './password-strength';
|
|
24
|
+
export * from './pop-float';
|
|
25
|
+
export * from './rating';
|
|
26
|
+
export * from './rich-text';
|
|
27
|
+
export * from './segmented';
|
|
28
|
+
export * from './select';
|
|
29
|
+
export * from './side-nav';
|
|
30
|
+
export * from './size-break';
|
|
31
|
+
export * from './sizer';
|
|
32
|
+
export * from './tab-selector';
|
|
33
|
+
export * from './tag-list';
|
|
34
|
+
export { trackDrag, bringToFront, findHighestZ } from './track-drag';
|
|
35
|
+
export { version } from './version';
|
|
36
|
+
export { scriptTag, styleSheet } from './via-tag';
|
|
37
|
+
export * as xinjs from 'tosijs';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export * from './ab-test';
|
|
2
|
+
export * from './babylon-3d';
|
|
3
|
+
export * from './bp-loader';
|
|
4
|
+
export * from './bodymovin-player';
|
|
5
|
+
export * from './carousel';
|
|
6
|
+
export * from './code-editor';
|
|
7
|
+
export * from './color-input';
|
|
8
|
+
export * from './data-table';
|
|
9
|
+
export * as dragAndDrop from './drag-and-drop';
|
|
10
|
+
export * from './editable-rect';
|
|
11
|
+
export * from './filter-builder';
|
|
12
|
+
export * from './float';
|
|
13
|
+
export * from './form';
|
|
14
|
+
export * from './gamepad';
|
|
15
|
+
export * from './icons';
|
|
16
|
+
export * from './live-example';
|
|
17
|
+
export * from './localize';
|
|
18
|
+
export { makeSorter } from './make-sorter';
|
|
19
|
+
export * from './mapbox';
|
|
20
|
+
export * from './markdown-viewer';
|
|
21
|
+
export * from './menu';
|
|
22
|
+
export * from './notifications';
|
|
23
|
+
export * from './password-strength';
|
|
24
|
+
export * from './pop-float';
|
|
25
|
+
export * from './rating';
|
|
26
|
+
export * from './rich-text';
|
|
27
|
+
export * from './segmented';
|
|
28
|
+
export * from './select';
|
|
29
|
+
export * from './side-nav';
|
|
30
|
+
export * from './size-break';
|
|
31
|
+
export * from './sizer';
|
|
32
|
+
export * from './tab-selector';
|
|
33
|
+
export * from './tag-list';
|
|
34
|
+
export { trackDrag, bringToFront, findHighestZ } from './track-drag';
|
|
35
|
+
export { version } from './version';
|
|
36
|
+
export { scriptTag, styleSheet } from './via-tag';
|
|
37
|
+
export * as xinjs from 'xinjs';
|