ember-primitives 0.0.2 → 0.0.4
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/README.md +2 -21
- package/dist/_app_/components/portal.js +1 -0
- package/dist/_app_/components/toggle.js +1 -0
- package/dist/components/-private/typed-elements.js.map +1 -0
- package/dist/components/-private/utils.d.ts +6 -0
- package/dist/components/-private/utils.js +13 -0
- package/dist/components/-private/utils.js.map +1 -0
- package/dist/components/link.d.ts +41 -5
- package/dist/components/link.js +7 -8
- package/dist/components/link.js.map +1 -1
- package/dist/components/popover.d.ts +102 -2
- package/dist/components/popover.js +108 -2
- package/dist/components/popover.js.map +1 -1
- package/dist/components/portal-targets.d.ts +13 -2
- package/dist/components/portal-targets.js +31 -3
- package/dist/components/portal-targets.js.map +1 -1
- package/dist/components/portal.d.ts +20 -0
- package/dist/components/portal.js +32 -0
- package/dist/components/portal.js.map +1 -0
- package/dist/components/shadowed.d.ts +21 -6
- package/dist/components/shadowed.js +9 -3
- package/dist/components/shadowed.js.map +1 -1
- package/dist/components/switch.d.ts +47 -6
- package/dist/components/switch.js +31 -5
- package/dist/components/switch.js.map +1 -1
- package/dist/components/toggle.d.ts +30 -0
- package/dist/components/toggle.js +31 -0
- package/dist/components/toggle.js.map +1 -0
- package/dist/helpers/service.d.ts +1 -1
- package/dist/helpers/service.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/proper-links.d.ts +1 -1
- package/dist/proper-links.js.map +1 -1
- package/package.json +17 -9
- package/dist/_app_/color-scheme.js +0 -1
- package/dist/_app_/components/typed-elements.js +0 -1
- package/dist/_app_/proper-links.js +0 -1
- package/dist/components/typed-elements.js.map +0 -1
- /package/dist/components/{typed-elements.d.ts → -private/typed-elements.d.ts} +0 -0
- /package/dist/components/{typed-elements.js → -private/typed-elements.js} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
export { ExternalLink } from "./components/external-link.js";
|
|
2
2
|
export { Link } from "./components/link.js";
|
|
3
3
|
export { Popover } from "./components/popover.js";
|
|
4
|
+
export { Portal } from "./components/portal.js";
|
|
5
|
+
export { PortalTargets, TARGETS as PORTALS } from "./components/portal-targets.js";
|
|
4
6
|
export { Shadowed } from "./components/shadowed.js";
|
|
5
7
|
export { Switch } from "./components/switch.js";
|
|
8
|
+
export { Toggle } from "./components/toggle.js";
|
|
6
9
|
export * from "./helpers.js";
|
package/dist/index.js
CHANGED
|
@@ -2,8 +2,11 @@ import { macroCondition, isDevelopingApp, importSync } from '@embroider/macros';
|
|
|
2
2
|
export { ExternalLink } from './components/external-link.js';
|
|
3
3
|
export { Link } from './components/link.js';
|
|
4
4
|
export { Popover } from './components/popover.js';
|
|
5
|
+
export { Portal } from './components/portal.js';
|
|
6
|
+
export { TARGETS as PORTALS, PortalTargets } from './components/portal-targets.js';
|
|
5
7
|
export { Shadowed } from './components/shadowed.js';
|
|
6
8
|
export { Switch } from './components/switch.js';
|
|
9
|
+
export { Toggle } from './components/toggle.js';
|
|
7
10
|
export { service } from './helpers/service.js';
|
|
8
11
|
|
|
9
12
|
if (macroCondition(isDevelopingApp())) {
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import { importSync, isDevelopingApp, macroCondition } from '@embroider/macros';\n\nif (macroCondition(isDevelopingApp())) {\n importSync('./components/violations.css');\n}\n\nexport { ExternalLink } from './components/external-link';\nexport { Link } from './components/link';\nexport { Popover } from './components/popover';\nexport { Shadowed } from './components/shadowed';\nexport { Switch } from './components/switch';\nexport * from './helpers';\n"],"names":["macroCondition","isDevelopingApp","importSync"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import { importSync, isDevelopingApp, macroCondition } from '@embroider/macros';\n\nif (macroCondition(isDevelopingApp())) {\n importSync('./components/violations.css');\n}\n\nexport { ExternalLink } from './components/external-link';\nexport { Link } from './components/link';\nexport { Popover } from './components/popover';\nexport { Portal } from './components/portal';\nexport { PortalTargets } from './components/portal-targets';\nexport { TARGETS as PORTALS } from './components/portal-targets';\nexport { Shadowed } from './components/shadowed';\nexport { Switch } from './components/switch';\nexport { Toggle } from './components/toggle';\nexport * from './helpers';\n"],"names":["macroCondition","isDevelopingApp","importSync"],"mappings":";;;;;;;;;;;AAEA,IAAIA,cAAc,CAACC,eAAe,EAAE,CAAC,EAAE;EACrCC,UAAU,CAAC,6BAA6B,CAAC,CAAA;AAC3C"}
|
package/dist/proper-links.d.ts
CHANGED
|
@@ -10,4 +10,4 @@ declare function properLinks(klass: RouterType): RouterType;
|
|
|
10
10
|
*/
|
|
11
11
|
declare function properLinks(options: Options, klass: RouterType): RouterType;
|
|
12
12
|
declare function isLink(event: Event): HTMLAnchorElement | undefined;
|
|
13
|
-
export { properLinks, isLink };
|
|
13
|
+
export { RouterType, Options, properLinks, isLink };
|
package/dist/proper-links.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"proper-links.js","sources":["../src/proper-links.ts"],"sourcesContent":["import { assert } from '@ember/debug';\nimport { registerDestructor } from '@ember/destroyable';\nimport { getOwner } from '@ember/owner';\n\nimport type EmberRouter from '@ember/routing/router';\nimport type RouterService from '@ember/routing/router-service';\n\
|
|
1
|
+
{"version":3,"file":"proper-links.js","sources":["../src/proper-links.ts"],"sourcesContent":["import { assert } from '@ember/debug';\nimport { registerDestructor } from '@ember/destroyable';\nimport { getOwner } from '@ember/owner';\n\nimport type EmberRouter from '@ember/routing/router';\nimport type RouterService from '@ember/routing/router-service';\n\nexport type RouterType = typeof EmberRouter;\n\nexport interface Options {\n ignore?: string[];\n}\n\nexport function properLinks(options: Options): (klass: RouterType) => RouterType;\nexport function properLinks(klass: RouterType): RouterType;\n/**\n * @internal\n */\nexport function properLinks(options: Options, klass: RouterType): RouterType;\n\nexport function properLinks(\n ...args: [Options] | [RouterType] | [Options, RouterType]\n): RouterType | ((klass: RouterType) => RouterType) {\n let options: Options = {};\n let klass: undefined | RouterType = undefined;\n\n if (args.length === 2) {\n options = args[0] as Options;\n klass = args[1] as RouterType;\n } else if (args.length === 1) {\n if (typeof args[0] === 'object') {\n // TODO: how to get first arg type correct?\n return (klass: RouterType) => properLinks(args[0] as any, klass);\n } else {\n klass = args[0];\n }\n }\n\n let ignore = options.ignore || [];\n\n assert(`klass was not defined. possibile incorrect arity given to properLinks`, klass);\n\n return class extends klass {\n constructor(...args: object[]) {\n super(...args);\n\n const handler = (event: MouseEvent) => {\n /**\n * event.target may not be an anchor,\n * it may be a span, svg, img, or any number of elements nested in <a>...</a>\n */\n let interactive = isLink(event);\n\n if (!interactive) return;\n\n let owner = getOwner(this);\n\n assert('owner is not present', owner);\n\n let routerService = owner.lookup('service:router');\n\n handle(routerService, interactive, ignore, event);\n\n return false;\n };\n\n document.body.addEventListener('click', handler, false);\n\n registerDestructor(this, () => document.body.removeEventListener('click', handler));\n }\n };\n}\n\nexport function isLink(event: Event) {\n /**\n * Using composed path in case the link is removed from the DOM\n * before the event handler evaluates\n */\n let composedPath = event.composedPath();\n\n for (let element of composedPath) {\n if (element instanceof HTMLAnchorElement) {\n return element;\n }\n }\n}\n\nfunction handle(router: RouterService, element: HTMLAnchorElement, ignore: string[], event: Event) {\n /**\n * The href includes the protocol/host/etc\n * In order to not have the page look like a full page refresh,\n * we need to chop that \"origin\" off, and just use the path\n */\n let url = new URL(element.href);\n\n /**\n * If the domains are different, we want to fall back to normal link behavior\n *\n */\n if (location.origin !== url.origin) return;\n\n /**\n * We can optionally declare some paths as ignored,\n * or \"let the browser do its default thing,\n * because there is other server-based routing to worry about\"\n */\n if (ignore.includes(url.pathname)) return;\n\n let routeInfo = router.recognize(url.pathname);\n\n if (routeInfo) {\n event.preventDefault();\n event.stopImmediatePropagation();\n event.stopPropagation();\n\n router.transitionTo(url.pathname);\n\n return false;\n }\n}\n"],"names":["properLinks","args","options","klass","undefined","length","ignore","assert","constructor","handler","event","interactive","isLink","owner","getOwner","routerService","lookup","handle","document","body","addEventListener","registerDestructor","removeEventListener","composedPath","element","HTMLAnchorElement","router","url","URL","href","location","origin","includes","pathname","routeInfo","recognize","preventDefault","stopImmediatePropagation","stopPropagation","transitionTo"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-primitives",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Making apps easier to build",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
7
7
|
],
|
|
8
|
-
"repository": "",
|
|
8
|
+
"repository": "https://github.com/universal-ember/ember-primitives",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"author": "nullvoxpopuli",
|
|
11
11
|
"files": [
|
|
@@ -15,9 +15,12 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@babel/runtime": "^7.22.3",
|
|
17
17
|
"@embroider/addon-shim": "1.8.6-unstable.d120477",
|
|
18
|
-
"@embroider/macros": "1.11.1
|
|
18
|
+
"@embroider/macros": "1.11.1",
|
|
19
|
+
"@floating-ui/dom": "^1.4.1",
|
|
20
|
+
"ember-velcro": "^2.1.0"
|
|
19
21
|
},
|
|
20
22
|
"devDependencies": {
|
|
23
|
+
"@arethetypeswrong/cli": "^0.0.3",
|
|
21
24
|
"@babel/core": "^7.17.0",
|
|
22
25
|
"@babel/eslint-parser": "^7.21.8",
|
|
23
26
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
@@ -25,7 +28,7 @@
|
|
|
25
28
|
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
|
|
26
29
|
"@babel/plugin-syntax-decorators": "^7.22.3",
|
|
27
30
|
"@babel/preset-typescript": "^7.21.5",
|
|
28
|
-
"@embroider/addon-dev": "3.1.1
|
|
31
|
+
"@embroider/addon-dev": "3.1.1",
|
|
29
32
|
"@glimmer/component": "^1.1.2",
|
|
30
33
|
"@glimmer/tracking": "^1.1.2",
|
|
31
34
|
"@glint/core": "^1.0.2",
|
|
@@ -48,6 +51,7 @@
|
|
|
48
51
|
"eslint-plugin-node": "^11.1.0",
|
|
49
52
|
"eslint-plugin-prettier": "^4.0.0",
|
|
50
53
|
"prettier": "^2.8.8",
|
|
54
|
+
"prettier-plugin-ember-template-tag": "^0.3.2",
|
|
51
55
|
"publint": "^0.1.12",
|
|
52
56
|
"rollup": "~3.21.0",
|
|
53
57
|
"rollup-plugin-copy": "^3.4.0",
|
|
@@ -66,16 +70,15 @@
|
|
|
66
70
|
"type": "addon",
|
|
67
71
|
"main": "addon-main.cjs",
|
|
68
72
|
"app-js": {
|
|
69
|
-
"./color-scheme.js": "./dist/_app_/color-scheme.js",
|
|
70
73
|
"./components/external-link.js": "./dist/_app_/components/external-link.js",
|
|
71
74
|
"./components/link.js": "./dist/_app_/components/link.js",
|
|
72
75
|
"./components/popover.js": "./dist/_app_/components/popover.js",
|
|
73
76
|
"./components/portal-targets.js": "./dist/_app_/components/portal-targets.js",
|
|
77
|
+
"./components/portal.js": "./dist/_app_/components/portal.js",
|
|
74
78
|
"./components/shadowed.js": "./dist/_app_/components/shadowed.js",
|
|
75
79
|
"./components/switch.js": "./dist/_app_/components/switch.js",
|
|
76
|
-
"./components/
|
|
77
|
-
"./helpers/service.js": "./dist/_app_/helpers/service.js"
|
|
78
|
-
"./proper-links.js": "./dist/_app_/proper-links.js"
|
|
80
|
+
"./components/toggle.js": "./dist/_app_/components/toggle.js",
|
|
81
|
+
"./helpers/service.js": "./dist/_app_/helpers/service.js"
|
|
79
82
|
}
|
|
80
83
|
},
|
|
81
84
|
"exports": {
|
|
@@ -84,7 +87,7 @@
|
|
|
84
87
|
"types": "./dist/*.d.ts",
|
|
85
88
|
"default": "./dist/*.js"
|
|
86
89
|
},
|
|
87
|
-
"./addon-main
|
|
90
|
+
"./addon-main": "./addon-main.cjs"
|
|
88
91
|
},
|
|
89
92
|
"typesVersions": {
|
|
90
93
|
"*": {
|
|
@@ -93,6 +96,9 @@
|
|
|
93
96
|
]
|
|
94
97
|
}
|
|
95
98
|
},
|
|
99
|
+
"volta": {
|
|
100
|
+
"extends": "../package.json"
|
|
101
|
+
},
|
|
96
102
|
"peerDependencies": {
|
|
97
103
|
"@glimmer/component": "^1.1.2",
|
|
98
104
|
"@glimmer/tracking": "^1.1.2",
|
|
@@ -109,9 +115,11 @@
|
|
|
109
115
|
"lint:hbs": "pnpm -w exec lint hbs",
|
|
110
116
|
"lint:hbs:fix": "pnpm -w exec lint hbs:fix",
|
|
111
117
|
"lint:package": "pnpm publint",
|
|
118
|
+
"lint:published-types": "attw *.tgz || exit 0",
|
|
112
119
|
"lint:prettier:fix": "pnpm -w exec lint prettier:fix",
|
|
113
120
|
"lint:prettier": "pnpm -w exec lint prettier",
|
|
114
121
|
"lint:types": "glint",
|
|
122
|
+
"pack": "pnpm pack",
|
|
115
123
|
"start": "rollup --config --watch",
|
|
116
124
|
"test": "echo 'A v2 addon does not have tests, run tests in test-app'"
|
|
117
125
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from "ember-primitives/color-scheme";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from "ember-primitives/components/typed-elements";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from "ember-primitives/proper-links";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"typed-elements.js","sources":["../../src/components/typed-elements.ts"],"sourcesContent":["import type { TOC } from '@ember/component/template-only';\n\nexport const Div: TOC<{ Element: HTMLDivElement, Blocks: {default: []} }> = [__GLIMMER_TEMPLATE(`<div ...attributes>{{yield}}</div>`, { strictMode: true })];\n\nexport const Label: TOC<{ Element: HTMLLabelElement, Args: { for: string }, Blocks: { default: []}}> = [__GLIMMER_TEMPLATE(`<label for={{@for}} ...attributes>{{yield}}</label>`, { strictMode: true })];\n\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHlwZWQtZWxlbWVudHMuanMiLCJzb3VyY2VzIjpbInR5cGVkLWVsZW1lbnRzLmd0cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgdHlwZSB7IFRPQyB9IGZyb20gJ0BlbWJlci9jb21wb25lbnQvdGVtcGxhdGUtb25seSc7XG5cbmV4cG9ydCBjb25zdCBEaXY6IFRPQzx7IEVsZW1lbnQ6IEhUTUxEaXZFbGVtZW50LCBCbG9ja3M6IHtkZWZhdWx0OiBbXX0gfT4gPSA8dGVtcGxhdGU+PGRpdiAuLi5hdHRyaWJ1dGVzPnt7eWllbGR9fTwvZGl2PjwvdGVtcGxhdGU+O1xuXG5leHBvcnQgY29uc3QgTGFiZWw6IFRPQzx7IEVsZW1lbnQ6IEhUTUxMYWJlbEVsZW1lbnQsIEFyZ3M6IHsgZm9yOiBzdHJpbmcgfSwgQmxvY2tzOiB7IGRlZmF1bHQ6IFtdfX0+ID0gPHRlbXBsYXRlPjxsYWJlbCBmb3I9e3tAZm9yfX0gLi4uYXR0cmlidXRlcz57e3lpZWxkfX08L2xhYmVsPjwvdGVtcGxhdGU+O1xuIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7QUFDMUQ7QUFDQSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLHFCQUFVLENBQUMsZ0NBQWdDLENBQUMseUJBQVcsQ0FBQztBQUNwSTtBQUNBLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMscUJBQVUsQ0FBQyxpREFBaUQsQ0FBQyx5QkFBVyxDQUFDOyJ9"],"names":["Div","setComponentTemplate","precompileTemplate","strictMode","templateOnly","Label"],"mappings":";;;;MAEaA,GAA4D,GAAAC,oBAAA,CAAAC,kBAAA,CAAa,CAAkC,kCAAA,CAAA,EAAA;EAAAC,UAAA,EAAA,IAAA;AAAA,CAAA,CAAA,EAAAC,YAAA,CAAW,gBAAA,EAAA,KAAA,CAAA,EAAA;MAEtHC,KAAuF,GAAAJ,oBAAA,CAAAC,kBAAA,CAAa,CAAmD,mDAAA,CAAA,EAAA;EAAAC,UAAA,EAAA,IAAA;AAAA,CAAA,CAAA,EAAAC,YAAA,CAAW,gBAAA,EAAA,OAAA,CAAA;;;;"}
|
|
File without changes
|
|
File without changes
|