@scalable.software/pin 0.2.0 → 0.2.1
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 +144 -144
- package/README.md +365 -365
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -0
- package/dist/{Pin.d.ts → pin.d.ts} +8 -13
- package/dist/{Pin.js → pin.js} +16 -23
- package/dist/{Pin.meta.d.ts → pin.meta.d.ts} +8 -13
- package/dist/{Pin.meta.js → pin.meta.js} +2 -2
- package/{src/Pin.style.css → dist/pin.style.css} +126 -122
- package/dist/{Pin.template.html → pin.template.html} +26 -12
- package/package.json +55 -56
- package/report/{Pin.report.json → pin.report.json} +668 -644
- package/src/index.ts +14 -0
- package/src/{Pin.meta.ts → pin.meta.ts} +108 -114
- package/{dist/Pin.style.css → src/pin.style.css} +126 -122
- package/src/{Pin.template.html → pin.template.html} +26 -12
- package/src/{Pin.ts → pin.ts} +318 -329
- package/dist/Index.d.ts +0 -4
- package/dist/Index.js +0 -2
- package/src/Index.ts +0 -25
package/src/Index.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
export { type Configuration } from "@scalable.software/component";
|
|
2
|
-
|
|
3
|
-
export {
|
|
4
|
-
Tag,
|
|
5
|
-
Attribute,
|
|
6
|
-
State,
|
|
7
|
-
Visible,
|
|
8
|
-
Status,
|
|
9
|
-
Operation,
|
|
10
|
-
Event,
|
|
11
|
-
Gesture,
|
|
12
|
-
} from "./Pin.meta.js";
|
|
13
|
-
|
|
14
|
-
export {
|
|
15
|
-
type Attributes,
|
|
16
|
-
type States,
|
|
17
|
-
type Visibility,
|
|
18
|
-
type Statuses,
|
|
19
|
-
type Operations,
|
|
20
|
-
type Events,
|
|
21
|
-
type Gestures,
|
|
22
|
-
type Handler,
|
|
23
|
-
} from "./Pin.meta.js";
|
|
24
|
-
|
|
25
|
-
export { Pin } from "./Pin.js";
|